如何在自定义WordPress插件中通过json响应发送当前发布的表单数据的id?

时间:2019-05-15 作者:Bikash Gurung

我已使用wp\\u send\\u json()发送当前发布的表单数据,但找不到发送附加到表单的id的方法,该id会从数据库中自动递增,因此我可以更新页面上的表数据,而无需刷新。。。

enter image description hereenter image description here

1 个回复
SO网友:MikeNGarrett

从…起an example in the Developer Reference:

要获取插入对象的id,请使用$wpdb->insert_id;

global $wpdb;
$table = $wpdb->prefix.\'you_table_name\';
$data = array(\'column1\' => \'data one\', \'column2\' => 123);
$format = array(\'%s\',\'%d\');
$wpdb->insert($table,$data,$format);
$my_id = $wpdb->insert_id;

相关推荐

编辑子主题的“header.php”,但似乎没有更改文件

所以我登录FTP并导航到/wp-content/themes/MyChildTheme/ 并编辑了header.php 文件我保存了文件并上传了它,我可以确认文件已更改,因为如果我通过cPanel或其他计算机进行检查,我可以看到新代码。然而如果我转到WP Admin并导航到Appearance > Editor > MyChildTheme > header.php 如下所示:文件显示为未编辑。。。我看不到我添加的代码。我已经清除了LiteSpeed缓存,但它仍然不会显示已编辑的代码。我