使用wordpress在underscore.me上创建一个博客模板页面

时间:2015-07-29 01:21:00

标签: php wordpress

我正在尝试个性化在underscore.me中制作的新主题,但我似乎无法创建一个带有循环的新模板页面,该循环可以显示一个特定类别的帖子,我该怎么做?

我要在这里粘贴underscore.me主题的index.php,女巫有一个通用的循环,遗憾的是,在模板页面上复制和粘贴这个循环

<div id="primary" class="content-area">
    <main id="main" class="site-main" role="main">

    <?php if ( have_posts() ) : ?>

        <?php if ( is_home() && ! is_front_page() ) : ?>
            <header>
                <h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
            </header>
        <?php endif; ?>

        <?php /* Start the Loop */ ?>
        <?php while ( have_posts() ) : the_post(); ?>

            <?php

                /*
                 * Include the Post-Format-specific template for the content.
                 * If you want to override this in a child theme, then include a file
                 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
                 */
                get_template_part( 'template-parts/content', get_post_format() );
            ?>

        <?php endwhile; ?>

        <?php the_posts_navigation(); ?>

    <?php else : ?>

        <?php get_template_part( 'template-parts/content', 'none' ); ?>

    <?php endif; ?>

    </main><!-- #main -->
</div><!-- #primary -->

这是page.php。

<div id="primary" class="content-area">
    <main id="main" class="site-main" role="main">

        <?php while ( have_posts() ) : the_post(); ?>

            <?php get_template_part( 'template-parts/content', 'page' ); ?>

            <?php
                // If comments are open or we have at least one comment, load up the comment template.
                if ( comments_open() || get_comments_number() ) :
                    comments_template();
                endif;
            ?>

        <?php endwhile; // End of the loop. ?>

    </main><!-- #main -->
</div><!-- #primary -->

1 个答案:

答案 0 :(得分:0)

对你好消息,你不需要针对特定​​类别的特定循环。 如果您的主题中有category.php文件,并假设您的类别名称是&#34; Lux Cars&#34; id为&#34; 35&#34; 。如果您将category.php复制为category-35.php或category-lux-cars.php(您的类别的slug)。当您打开此类别的帖子时。 wordpress调用此文件并在该循环中显示帖子。你可以编辑你的类别-35.php并添加任何类别细节或某事。

但如果您仍想要特定类别的循环,那么您可以使用该代码;

<?php 
$args = array ( 'category' => ID, 'posts_per_page' => 5);
$myposts = get_posts( $args );
foreach( $myposts as $post ) :  setup_postdata($post);
 ?>
//Style Posts here
<?php endforeach; ?>