Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
/* Loop Begins */
if ( have_posts() ) {
while (have_posts()) {
the_post();
global $post;
/* Content */
$post_content = do_shortcode(get_the_content());
if (strlen($post_content) > $num_characters) {
$post_content = mb_substr(strip_tags($post_content), 0, $num_characters) . '...';
} else {
$post_content = strip_tags($post_content);
}
$output .= get_the_post_thumbnail($post->ID, array(115, 121)) . get_the_title() . $post_content;
} /* endwhile */
}