WordPress
0
Вклад в тег
function namespace_add_custom_types( $query ) {
if (is_tag() && $query->is_tag() ) {
$query->set( 'post_type', array( 'post', 'news', 'service', 'articles'));
}
return $query;
}
add_filter( 'pre_get_posts', 'namespace_add_custom_types' );