Спасибо за помощь.
Итоговое готовое решение:
<?php
$category_id = 9; // ID нужной категории
$posts = get_posts(array(
'category' => $category_id,
'posts_per_page' => -1,
'order' => 'ASC',
'orderby' => 'title'
));
$new_posts = array(); // здесь будут храниться записи без комментариев
foreach ($posts as $post) {
if (strpos($post->post_title, "МСК+1") === false) // <<<==== вот этот блок
continue;
$comments_number = get_comments_number($post->ID);
if ($comments_number == 0) {
array_push($new_posts, $post);
}
}
if (count($new_posts) == 0) {
echo 'Нет записей без комментариев';
} else {
foreach ($new_posts as $post) {
// здесь выводим информацию о посте с url записи
echo '<h5><a href="' . get_permalink($post->ID) . '">' . $post->post_title . '</a></h5>';
}
}
?>