更新没有更新帖子标题的帖子



我想更新帖子数据而不更新帖子标题,即使用户更改帖子标题。对于这个功能,我编写了以下代码。但这行不通。我的代码如下:

function update_post_without_update_title($post_id,$data) {
      $post = get_post($post_id);
      if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) 
         return;
      if ($data['post_status'] == "publish"){
          $data['post_title'] = $post->post_title;
       }
}
add_action('pre_post_update','update_post_without_update_title',10,2);

你能告诉我这里要修什么吗?

提前致谢

使用此函数:

 add_action('post_updated','after_update_post_without_update_title',10,3);
 function after_update_post_without_update_title($postId,$after,$before)
 {
        global $wpdb;
        $where = array( 'ID' => $postId );
        $oldTitle = $before->post_title;
        $data = array('post_title'=>$oldTitle);
        $wpdb->update( $wpdb->posts, $data, $where );
        return true;
 }

相关内容

  • 没有找到相关文章

最新更新