当我在后端粘贴帖子时,我希望它添加meta_key
和meta_value
。换句话说,要控制帖子被标记为粘性的日期,我想添加meta_key
,例如date
和meta_value
,例如date( 'm/d/Y H:i:s')
。
我认为使用hook和add_action
是可能的,但我不知道如何。有没有办法做到这一点?
答案 0 :(得分:1)
使帖子粘贴实际上会更新WordPress背景中的博客选项:
update_option('sticky_posts', $stickies); (see core in wp-includes/post.php)
所以你的钩子可以是pre_update_option_sticky_posts(前缀pre_update_option_ +选项名称),如下所示:
add_action( 'pre_update_option_sticky_posts', 'my_function' );
function my_function( $post_id ) {
Your code here to save the custom field values
}