saved_post post_updated在自定义字段更新之前触发,自定义字段更新后触发了什么功能? WordPress的

时间:2015-01-10 20:49:57

标签: php wordpress custom-post-type

我遇到了问题,我想使用其他自定义帖子字段更新自定义用户元数据字段。它必须在包括自定义字段保存/更新的整个帖子之后发生。但是我找到的所有调用:更新基本的发布数据,然后调用操作,然后更新自定义字段。

saved_post& post_updated导致此代码被延迟1个保存。也就是说,如果我要创建一个新帖子并将$ my_value设置为5,那么我第一次保存它会返回0,然后下次它会以5.等返回。

有人知道自定义帖子数据保存后运行的动作挂钩吗?或者如何在自定义发布数据后激活save_post或post_updated?

    function zhu_li_do_the_thing( $post_id ) {

//获取发布数据,提取作者ID和后期类型

$post = get_post( $post_id );
$post_type = $post->post_type;
$userid = $post->post_author;

//如果我的自定义帖子类型,则获取我想要的自定义字段值。

if( 'my_custom_post_type' == $post_type ){
  $post_custom_fields = get_post_custom($post_id);
  $my_custom_field = $custom_fields['im_a_field'];
  foreach($im_a_field as $key ){
        $my_value = $key;
        }

//如果值以" +"开头或" - "对作者 - 自定义元数据进行数学计算,如果它忽略它,如果它是其他任何东西,则使元数据=值。

  if(substr($my_value, 0,1)=='+' || substr($my_value, 0,1)=='-'){
        $my_int = intval($my_value);
        $author_int = intval(get_user_meta($userid, 'the_objective, true)); 
        $result = ($author_int + $str);
        update_user_meta( $userid, 'the_objective', $result );

  }elseif($my_value == null ){
        return;
  }else{ 
        update_user_meta( $userid, 'the_objective', $my_value )
  }}};

add_action( 'save_post, 'zhu_li_do_the_thing' );

1 个答案:

答案 0 :(得分:0)

您应该先使用pre_post_update检查帖子元数据,然后使用post_updated检查更新的帖子元数据。

以下是一个检查woocomerce产品库存状态的类代码片段。

function __construct()
{   
    add_action( 'post_updated', array( $this, 'post_updated' ), 1, 1 );
    add_action( 'pre_post_update', array( $this, 'pre_post_update' ), 1, 1 );
}

function pre_post_update( $post_ID )
{       
    global $post_type;

    if( $post_type == 'product' )
        define( 'stock_status_previous', get_post_meta( $post_ID, '_stock_status', 1 ) );
}

function post_updated( $post_ID )
{
    if( defined( 'stock_status_previous' ) )
    {
        $stock_status = get_post_meta( $post_ID, '_stock_status', 1 );

        if( $stock_status == stock_status_check )
            return;

        // post meta is different - sp do something

}