Featured Category or Special Category in WordPress

You can do this by using the pre_get_posts filter, which allows you to change they query before it is executed. In this way you can add Cat A to any request for categories. Like this: add_filter (‘pre_get_posts’, ‘wpse380282_add_cat_a’); function wpse380282_add_cat_a ($query) { // do this only on the front end for the main query if … Read more