Php 利用博客页面开发Wordpress网站

Php 利用博客页面开发Wordpress网站,php,wordpress,Php,Wordpress,我已经创建了一个wordpress网站,我希望它有一个使用wordpress功能的博客页面,可以轻松获取博客文章。我已经设置了一个博客页面。博客文章1的一个例子是: BLOG POST 1 *Posted January 17, 2012* Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam

我已经创建了一个wordpress网站,我希望它有一个使用wordpress功能的博客页面,可以轻松获取博客文章。我已经设置了一个博客页面。博客文章1的一个例子是:

BLOG POST 1
*Posted January 17, 2012*
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam...Continue reading →

当我单击“继续阅读”时,它会转到baseUrl/slug(已发布的博客),但显示的是我的主页;url正确,但显示不正确。它应该显示所选的博客文章,但它会显示我的主页。我是否需要在我的前端(CMS界面)或模板文件或博客上配置任何内容?

这可能取决于太多的变量,因此这里的解释非常复杂,尤其是没有提供代码或URL

尝试切换主题,或切换到默认的wordpress主题。 博客、主页或任何其他功能的显示取决于主题文件,
您可能想玩一下wordpress,并阅读一些基本教程以了解更多内容。

您还没有提供创建链接的代码。所以我不能给你精确的答案。但是您可以尝试修改以下代码。这可能对你有帮助

<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>" class="more">Read full article</a>


请记住,此代码处于循环中。

请提供浏览器中显示的url以及创建url的代码。否则很难给出解决方案。