【发布时间】:2016-09-19 18:07:31
【问题描述】:
我是 Wordpress 的新手。当我去时,我的网站加载正常
mydomain.com。现在我创建了一个名为Home 的页面及其
永久链接是mydomain.com/homepage。
如果我点击 home 它不会加载帖子。
如何将Home 链接到站点的根目录(index.php)?
index.php
<?php
get_header();
?>
<h1>index.php</h1>
<?php
if(have_posts()):
while(have_posts()):the_post();
?>
<article class="post">
<h2><a href="<?php the_permalink();?>"><?php the_title() ?></a></h2>
<?php the_content(); ?>
</article>
<?php
endwhile;
else:
echo '<p>No content found</p>';
endif;
?>
<?php
get_footer();
?>
【问题讨论】:
-
在 Settings->permalinks 中将永久链接结构更改为“帖子名称”
标签: wordpress