是的,作为post_exists("great title")
运行以下SQL:
SELECT ID FROM $wpdb->posts WHERE 1=1 AND post_title = \'great title\'
因此,没有岗位状态或岗位类型限制。
检查docs 在…上post_exists()
了解更多信息。
如果要通过post类型进行限制,可以使用:
$found_page = get_page_by_title( "great title", $output = OBJECT, $post_type = \'page\' );
查看文档
here.