如果删除帖子,您使用的增量方法将无法达到您想要的效果。相反,您可以在前端表单提交时将计数器保存在wp\\U选项表中,类似于:
if(get_option(\'customers_count\')){
$count = get_option(\'customers_count\', true);
update_option(\'customers_count\', $count+1);
} else {
/** This will automatically add the option if it does not exist. **/
update_option(\'customers_count\', 1); // adding first time as value 1
}
它将始终以新编号作为帖子标题#。
Note: 请确保仅在提交表单以添加新帖子而不是编辑帖子时才更新选项。