text 某些类别的循环帖子(新闻,博客)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 某些类别的循环帖子(新闻,博客)相关的知识,希望对你有一定的参考价值。
<div class="row row-10">
<?php
query_posts( 'cat=forest' );
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
?>
<div class="col-xs-6 col-md-3">
<a href="<?php echo get_permalink(); ?>" class="thumbnail thumbnail-simple">
<div class="img">
<?php if ( has_post_thumbnail() ) {
the_post_thumbnail( 'full', array( 'class' => 'center-block img-responsive' ) );
} else { ?>
<img src="<?php bloginfo( 'template_directory' ); ?>/img/forest/img-news-4.jpg" alt="" class="center-block img-responsive"/>
<?php } ?>
<span class="label label-green">植樹貢献</span>
</div>
<div class="caption">
<h3 class="title-black-sm text-center serif">
<?php the_title(); ?>
</h3>
<p>
<?php
$content = wp_strip_all_tags( get_the_content() );
echo nl2br( mb_strimwidth( $content, 0, 120, "...", "UTF-8" ) );
?>
</p>
<p class="date text-right">
<?php echo get_the_date( 'Y-m-d' ); ?>
</p>
</div>
</a>
</div>
<?php
endwhile;
endif;
wp_reset_query();
?>
</div>
以上是关于text 某些类别的循环帖子(新闻,博客)的主要内容,如果未能解决你的问题,请参考以下文章
WordPress 博客,仅对当前页面使用存档?
填充不包括某些帖子类别的自定义 WordPress 帖子存档
检查帖子的类别是 x 还是 x 的子级
WordPress:我如何通过 sql 将所有帖子从体育类别转换为新闻类别 [关闭]
将 jekyll 帖子列表限制为某些类别
在自定义帖子循环中显示自定义类别