Exclude posts with certain tags in category archive
You could modify your query on pre_get_posts. Example: // I’d wouldn’t hardcode the tags/category ids, but where to store and // how to retrieve those settings go beyond the scope of this question. define( ‘YIVIS_EXCLUDED_TAG’, 12 ); add_action( ‘pre_get_posts’, ‘yivi_excludes_tags’ ); function yivi_excludes_tags( $query ) { if ( $query->is_category() { $query->set(‘tag’, [ YIVIS_EXCLUDED_TAG * -1 … Read more