the_content()
только текст(обычные картинки) исключая галерею, так как дальше она выводиться через get_post_gallery()
the_content()
с блоговой страницы home.add_filter('the_content', 'remove_shortcode_from_home');
function remove_shortcode_from_home($content) {
if ( is_home() ) {
$content = strip_shortcodes( $content );
}
return $content;
}