每五个帖子之间的WordPress自定义帖子

时间:2017-05-14 18:14:27

标签: php wordpress

custom post

我试图弄清楚如何以最佳方式完成图像展示。 我一直在尝试用模数来做if / else,但由于自定义帖子也是帖子,所以会有重复。我正在考虑创建2个自定义查询,一个包含所有普通帖子,另一个包含自定义帖子,但这会让它变慢,看起来不是一个好的解决方案..

这里是wp-content \ themes \ theme \ home.php中home.php的代码

<?php
get_header(); ?>

<div id="main" class="site-main" role="main">

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

        <div id="posts" <?php hive_blog_class( 'archive__grid  grid  masonry' ); ?>>
            <?php /* Start the Loop */
            while ( have_posts() ) : the_post();

                /* 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( 'content', get_post_format() );

            endwhile; ?>
        </div>

        <?php hive_paging_nav();
    else :
        get_template_part( 'content', 'none' );
    endif; ?>

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

0 个答案:

没有答案