wordpress get_option('sticky_posts')返回空数组

时间:2018-09-23 06:41:23

标签: wordpress wordpress-theming

我试图在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
) );

0 个答案:

没有答案