从wp循环中的几个帖子中获取当前内容

时间:2016-12-08 12:18:12

标签: php wordpress

我无法在弹出窗口中显示单个帖子。

在我尝试的代码下面:

<div class="row homepage_blogs" data-masonry>
<?php
$i = 1;
$args = array(
    'category__in' => array(4), 
    'post_type' => 'post',
    'posts_per_page' => 6,
    'ignore_sticky_posts' => true,
);
$query = new WP_Query($args);
if ($query->have_posts()) :
    while ($query->have_posts()) :
        $query->the_post();
        ?>
        <div class="col-md-12 post_item_wrapper" >
            <div class="post animated zoom_in homepage_post" style="animation-delay: <?php (.4 * $i) ?>s">
                <h3 class="blog-tit lightbox"><?php the_title(); ?></h3>
                <div class="blog-desc">
                    <p  class="lightbox"><?php echo substr(get_the_excerpt(), 0, 200) . '[...]'; ?></p>
                    <a href="#" data-featherlight-close-icon="close" data-featherlight=".lightbox"><span class="popup-link">MORE</span></a>
                </div>
            </div>
        </div>
        <?php
    endwhile;
    $i++;
endif; 
?>

当我点击“更多”按钮时,它会显示所有帖子的内容,但我只想使用循环播放单个帖子内容。

我还需要显示帖子的全部内容,而不仅仅是exerpt。

任何想法我怎么只能得到一个?

感谢您的帮助

0 个答案:

没有答案