我试图在index.php页面的不同部分仅显示粘性帖子。但是get_option( 'sticky_posts' )
返回一个空数组,对此可能会显示所有最新帖子的查询。
/* Get all sticky posts */
$stickies = get_option( 'sticky_posts' );
/* Query sticky posts */
$sticky_posts = new WP_Query( array(
'posts_per_page' => 4,
'lang' => 'bn',
'post__in' => $stickies,
'ignore_sticky_posts' => 1
) );