使用index.php而不是single.php发布WP帖子

时间:2019-08-13 作者:inputforcolor

关于我的自定义主题的帖子正在使用index.php 文件而不是single.php _ 我已经看完了至少10个关于SO的问题,尽管其中许多问题都很老了\\u

一些回答说,如果WP循环未在中设置single.php 那么它就不会被称为“我的单身”。php文件确实包含循环_

<?php get_header(); ?>

    <div class="container fadeIn" id="perimeter">
        <section id="page">
           <div class="row">
               <div class="col-12">
                    <div class="divPad">
                        <?php if(have_posts()) : ?>
                            <?php while(have_posts()) : the_post(); ?>
                                <?php the_content(); ?>
                            <?php endwhile; ?>
                        <?php else : ?>
                            <?php echo wpautop(\'Sorry, no posts were found\'); ?>
                        <?php endif; ?>                    
                    </div>
                </div>       
           </div>
        </section>

        <div class="horizBuffer2"></div>
    </div><!-- /#perimeter -->

<?php get_footer(); ?>
在几个问题上出现了一个答案,从拼写和其他特性来看,答案显然已被复制/粘贴。它在WP dashboard Settings(WP dashboard设置)部分说明了有关更改永久链接的内容,但没有明确说明应该更改什么_

重要提示:此自定义主题没有blogroll页面\\u所有帖子都通过其类别发送到不同的页面_

提前感谢任何可以在上显示我的帖子的人single.php

1 个回复
最合适的回答,由SO网友:Den Isahac 整理而成

single.php 另一方面,将仅显示一个立柱index.php 是显示所有内容的默认模板,包括posts, post, page, categories, 和tags 仅当不存在特定模板文件时。