admin管理员组文章数量:1122832
I want to display only the sticky posts on my front page. Right now it's possible to do a setting where the sticky posts are displayed at the top followed by the rest of the posts. I don't want to rest of the posts to show up, so how do I make sure only the sticky posts are shown?
Thank you!
I want to display only the sticky posts on my front page. Right now it's possible to do a setting where the sticky posts are displayed at the top followed by the rest of the posts. I don't want to rest of the posts to show up, so how do I make sure only the sticky posts are shown?
Thank you!
Share Improve this question asked Sep 27, 2018 at 11:50 AerodynamikaAerodynamika 1011 bronze badge2 Answers
Reset to default 0WordPress saves sticky posts inside the option named sticky_posts
. You can retrieve them via get_option('sticky_posts')
.
With that knowledge it is possible to change the query to only query for sticky posts, you usually do so via the pre_get_posts
hook.
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);
}
}
Try below steps
- Log into your WordPress admin panel.
- Look to the left hand sidebar menu and click the Settings option.
- From the expanded menu, click on the Reading option.
- You are brought to the Reading Settings page. From here, locate the Front page displays section and select the radio button for A static page (select below) .
- Next, select the page you want as your front page from the Front page:dropdown.
- Finally, set the Posts page: dropdown to --Select--. This effectively removes it from displaying on your site.
- Click on the Save Changes button to activate the new setup.
Hope this helps.
本文标签: frontpageHow to display only sticky posts on my automatically generated front page
版权声明:本文标题:frontpage - How to display only sticky posts on my automatically generated front page? 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736282987a1926819.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论