我正在关注wordpress主题的教程,但我注意到我的帖子只出现在“/localhost/wordpress/”域中,而不是其他任何地方,即使它们应该出现。
例如,如果我要去“/localhost/wordpress/about-us/”那里没有一篇帖子,而“/localhost/wordpress/”上显示的所有帖子也应该在这里可见。
错误不是我的主题代码,我百分之百确信这一点。所以我的问题是,这种行为的原因还可能是什么?
我知道not 使用静态主页。
This is my page.php code
<?php
get_header();
if (have_posts()) :
while (have_posts()) : the_post(); ?>
<article class="post page">
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
</article>
<?php endwhile;
else :
echo \'<p>No content found</p>\';
endif;
get_footer();
?>
This is my index.php code
<?php
get_header();
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;
get_footer();
?>