使用global post对象,您可以检查如下条件:
global $post;
if ( $post->post_date != $post->post_modified && $post->post_author != 1 ) :
// your code
endif;
但如果您喜欢只使用函数,则可以这样做:
if ( get_the_modified_time() != get_the_time() && get_the_author_meta( \'ID\' ) != 1 ) :
// your code
endif;