默认情况下,Wordpress分配draft
未经培训的职位的状态。我想分配pending
未刷新的帖子的状态。
这似乎是可能的wp_untrash_post_status, 但我似乎找不到正确的使用方法。我的代码中有:
add_action( \'untrash_post\', \'my_function\' );
function my_function( $post_id ) {
apply_filters( \'wp_untrash_post_status\', \'pending\', $post_id, \'pending\' );
}
我做错了什么?