Is there a way to disable the sticky posts feature?
You can’t turn it off, because it’s hard-coded into the submit metabox for the post post type, you can however hide the sticky checkbox and update the sticky array to unstick any currently stuck posts. Hide the sticky checkbox Add additional CSS to the post and post-new pages add_action( ‘admin_print_styles’, ‘hide_sticky_option’ ); function hide_sticky_option() { … Read more