add_action( 'pre_get_posts', 'custom_pre_get_posts', 1 );
function custom_pre_get_posts( $query ) {
if ($query->is_date() ) {
if ( $tag = get_query_var( 'tag', false ) ) {
$query->set( 'tag__in', $tag );
}
}
}
add_action( 'pre_get_posts', 'true_include_posts_from_tag' );
function true_include_posts_from_tag( $query ) {
if ($query->is_date() ) {
$query->set( 'tag__in', array( 233 ) );
}
}
Просто не буду их выводить. У каждого результата на странице поиска свой шаблон. Вместо
<?php the_permalink() ?><?php the_title(); ?>
буду выводить что-то своё или ссылку, ведущую по нужному адресу.