<?php
$the_content = apply_filters('the_content', get_the_content());
if ( !empty($the_content) ) {
echo $the_content;
}
else{
the_post_thumbnail();
}
?>


隐藏人物的观点
<?php
$the_content = apply_filters('the_content', get_the_content());
if ( !empty($the_content) ) {
echo $the_content;
}
else{
the_post_thumbnail();
}
?>