In the archive of one category I want to include posts from other categories.
-
In my posts I have to categories
(1) category A
(2) category BWhat I am trying to accomplish is:
In the archive page of the category A I want to include all the posts from the category B. However in the category B I want just the posts on that category.I am doing the following but it does not seem to work.
function display_filters( $query ) {
if ( $query->is_archive() && $query->query_vars[‘category_name’] == ‘category-a’) {
$query->set( ‘cat’, ‘1,8’) );
}return $query;
}
add_action( ‘pre_get_posts’, ‘display_filters’ );Any help will be much appreciated.
Cheers,
Nick
Viewing 11 replies - 1 through 11 (of 11 total)
Viewing 11 replies - 1 through 11 (of 11 total)
- The topic ‘In the archive of one category I want to include posts from other categories.’ is closed to new replies.