I need to display max 5 latest sticky posts that have a thumbnail. And I need to have accurate counting of the displayed posts. I’ve tried to exclude sticky...
  • May 26, 2022
  • 0 Comments
I use the following code to exclude expired posts and it works fine but it doesn’t exclude expired sticky posts. //* Exclude expired posts add_action( 'pre_get_posts', 'exclude_expired_posts' ); function...
  • May 23, 2022
  • 0 Comments
I would like 7 posts showing on my homepage. I would like to be able to manually choose those posts by stickying them. Currently, I have my posts per...
  • May 20, 2022
  • 0 Comments
I’m using the following bit of code to highlight sticky posts: <?php if (is_sticky()) : ?> <div class="col-md-12 box-01"> <div class="content"> <?php endif; ?> The only thing is, I...
  • May 17, 2022
  • 0 Comments
I need to create a custom WordPress admin interface for a client. I want to completely disable the sticky post feature from admin area. I found some posts on...
  • May 17, 2022
  • 0 Comments