带有静态首页网格缩略图的最新粘贴式帖子

时间:2018-04-08 作者:Adham Mohamed

我想制作非常简单的缩略图网格4或5个图像,只显示最新的粘性帖子,带有“快捷码,可以轻松添加到任何地方”

谢谢

1 个回复
最合适的回答,由SO网友:Adham Mohamed 整理而成

我找到了。

<div class="trending-right">
<?php
 $sticky = get_option( \'sticky_posts\' ); // Get all sticky posts
 rsort( $sticky ); // Sort the stickies, latest first
 $sticky = array_slice( $sticky, 0, 6 ); // Number of stickies to show
 query_posts( array( \'post__in\' => $sticky, \'caller_get_posts\' => 1 ) ); // The query

 if (have_posts() ) { while ( have_posts() ) : the_post(); ?>
 <div class="trend-post">
 <div class="thumb"><?php the_post_thumbnail(array(100,100)); ?></div>
 <div class="title"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></div>
 </div>
 <?php endwhile;?>
 <?php } else { echo ""; }
 wp_reset_query();

?>
</div>
我在标题中使用了此代码。php

结束

相关推荐