Wordpress 使用重力表单停止前端帖子表单中的重复标题

Wordpress 使用重力表单停止前端帖子表单中的重复标题,wordpress,duplicates,gravity-forms-plugin,Wordpress,Duplicates,Gravity Forms Plugin,我使用重力表单进行前端后期发布。现在我想停止在前端重复标题。请告诉我。在php函数中添加此代码 $page_check = get_page_by_title($content['title'], OBJECT, 'post'); if(!$page_check->ID){ //do something when post not exits }else{ // give a error or something }

我使用重力表单进行前端后期发布。现在我想停止在前端重复标题。请告诉我。

在php函数中添加此代码

$page_check = get_page_by_title($content['title'], OBJECT, 'post'); 
if(!$page_check->ID){ 
    //do something when post not exits 
}else{ 
    // give a error or something
}