我在这里发现了类似的内容:http://wordpress.org/support/topic/publish_post-hook-multiple-firing
基本上我在wordpress中使用编辑钩子将一些数据添加到表中,并且函数被调用两次。第一次使用默认值时,第二次获得实际数据。
有人提出这个问题吗?这真的是一个问题,还是我错过了什么?
动作:
add_action('edit_post', 'my_func');
功能:
function my_func() {
if(!wp_is_post_revision($post_ID)) {
// Code to get $_POST data, omitted
// Call to the database here, omitted
}
感谢。