WordPress在名为sticky_posts
. 您可以通过get_option(\'sticky_posts\')
.
有了这些知识,就可以将查询更改为仅查询粘性帖子,您通常可以通过pre_get_posts
钩
add_action(\'pre_get_posts\', \'WPSE_home_only_stickies\');
function WPSE_home_only_stickies($query) {
// only run for homepage & main query
if ($query->is_home() && $query->is_main_query()) {
$sticky_posts = get_option(\'sticky_posts\');
$query->set(\'post__in\', $sticky_posts);
}
}