我想在save\\u post之后在用户面板中获取管理员更新的用户ID,我有以下代码,但在调试中没有显示任何内容。日志
add_action( \'save_post\', \'my_save_post_function\',10, 3 );
function my_save_post_function( $post_ID, $post, $update ) {
error_log($post_ID );
error_log( print_r( $post_ID , true ) );
}
我也在wp config中启用了这个功能。php
define(\'WP_DEBUG\', true);
define(\'WP_DEBUG_LOG\', true);