post_updated:如何比较前后自定义字段的值?

时间:2019-06-06 14:30:07

标签: wordpress

我正在使用wordpress post_updated动作,想知道如何在更新帖子前后比较自定义字段的值?

function check_for_update($post_id, $post_after, $post_before){
if(get_post_meta($post_after, 'custom_field', true)!=get_post_meta($post_before, 'custom_field', true))    {
    //do something
}}add_action('check_for_update', 'create_event', 10, 3);

0 个答案:

没有答案