每4个帖子网格创建一个全宽的帖子 - Wordpress Loop

时间:2017-05-22 11:23:59

标签: php wordpress

如何每4个帖子网格创建一个全角贴?如下图所示。

enter image description here

这是我的代码wordpress循环。

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

    <article id="post-<?php the_ID(); ?>" <?php post_class('col-sm-6 grid-item '); ?>>

        <div class="entry-image">
            <a href="<?php echo get_permalink() ?>"><?php the_post_thumbnail('grid-thumb'); ?></a>
            <?php unbranded_entry_footer(); ?>
        </div>

        <header class="entry-header">
            <?php
            the_title( '<h3 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h3>' );

            if ( 'post' === get_post_type() ) : ?>
            <div class="entry-meta">
                <?php unbranded_posted_on(); ?>
            </div><!-- .entry-meta -->
            <?php
            endif; ?>
        </header><!-- .entry-header -->

        <div class="entry-content">
            <p><?php echo unbranded_string_limit_words(get_the_excerpt(), 18); ?>&hellip;</p>
        </div><!-- .entry-content -->
    </article>

<?php endwhile; endif; ?>

1 个答案:

答案 0 :(得分:0)

我是否知道您使用的是可视化作曲家还是创建自定义模板? 如果使用可视化合成器,您可以从后端执行此操作或将条件设置为禁用右侧使用的侧边栏 在page.php的侧边栏上方

<?php if(!is_page('your-page-slug' or ID)) { ?>

/*sidebar code*/

<?php } ?>