这是您正在寻找、测试的内容,我在自己的网站上使用它:
function the_slug_exists($post_name) {
global $wpdb;
if($wpdb->get_row("SELECT post_name FROM wp_posts WHERE post_name = \'" . $post_name . "\'", \'ARRAY_A\')) {
return true;
} else {
return false;
}
}
然后,您可以这样使用它:
if (the_slug_exists(\'contact\')) {
// do something
}
更换
contact
用你想测试的鼻涕虫。