How to choose a sort order (for posts) per category? (ideally when creating a new category)
It’s fairly simple to add it manually for your categories, If you want to be able to set and store the sort order from the admin UI, that’s a bit more involved. a manual fix can be achieved with a pre_get_posts hook: function wpa55535_pre_get_posts( $query ){ // if this is a category page if( $query->is_category … Read more