我想你说的是编辑器屏幕?如果是,可以使用全局变量$post_ID
:
add_action( \'edit_form_after_title\', \'wpse_94626_front_page_detection\' );
function wpse_94626_front_page_detection()
{
global $post_ID, $post_type;
if ( empty ( $post_ID ) or \'page\' !== $post_type )
return;
if ( $post_ID === (int) get_option( \'page_on_front\' ) )
print \'<p><b>This is the front page!</b></p>\';
}