只在/localhost/wordpress/上显示的帖子,而不在其他页面上显示

时间:2016-10-18 作者:TheAlPaca02

我正在关注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();
?>

1 个回复
SO网友:Sundaze

你在关于我们的页面上有没有一个快捷码,或者你是如何输出你的帖子的?

默认情况下,帖子仅显示在博客页面上。

你有静态主页吗?

需要更多信息

相关推荐

如何修改WP_INCLUDE/BLOCKS/LATEST_posts.php

我是WordPress开发的初学者,希望得到一些帮助。我在一个简单的WordPress网站上工作。基本上,用户希望在主页上显示最新的帖子。我使用了最新帖子块,并将其设置为显示整个帖子内容,现在用户不希望帖子标题链接到单个帖子页面(因为帖子的内容显示在主页上)。如何安全地修改模板文件,使其像h2标记一样使用,而不是在主题中使用的href标记。我知道您可以创建子主题并修改wp_content 文件,但我不确定如何处理中的文件wp_include. 我读到一些关于修改functions.php 但我不确定,如果