if ( ! empty($post->post_content) ) :
<article>
</article>
else :
// something else
endif;
function your_theme_slug_setup() {
add_theme_support( 'post-thumbnails' );
add_image_size( 'portfolio-single', 1140 , 567 );
add_image_size( 'portfolio-small', 940 , 567 );
}
add_action( 'after_setup_theme', 'your_theme_slug_setup' );
Понадобилось получить id родителя:
а где можно посмотреть все подобные методы?