当我在后端贴一个帖子时,我希望它被添加一个meta_key
and meta_value
。换句话说,为了控制帖子被标记为置顶的日期,我想添加一个meta_key
likedate
和一个meta_value
like date( 'm/d/Y H:i:s')
。
我认为使用 hook 和 是可能的add_action
,但我不知道如何。有没有办法做到这一点?
使帖子具有粘性实际上会更新 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
}