<?php if($items == 1) : echo $items[0];
else : echo $items ?>
<p>Мой контент</p>
<?php endif; ?>
if($items == 1) : echo $items[0]
count(arr)
, которая возвращает количество элементов в массиве. (Дока).echo $items
template_redirect
add_action( 'template_redirect', 'category_redirect' );
function category_redirect() {
if ( is_category() && get_queried_object()->count == 1 ) {
global $wp_query;
if ( isset( $wp_query->posts[0]->ID ) ) {
wp_redirect( get_the_permalink( $wp_query->posts[0]->ID ) );
}
}
}