我使用下面的代码检查slug是否存在,但是它搜索了所有帖子类型,我只需要检查特定的自定义帖子类型。
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($term)) :
echo 'Ok';
endif;
是否可以修改此代码以仅搜索特定的自定义帖子类型?
答案 0 :(得分:2)
function the_slug_exists($post_name, $post_type) {
global $wpdb;
if($wpdb->get_row("SELECT post_name FROM wp_posts WHERE post_name = '" . $post_name . "' AND post_type = '" . $post_type . "'", 'ARRAY_A')) {
return true;
} else {
return false;
}
}
用法
if (the_slug_exists($term,$type)) :
echo 'Ok';
endif;