将帖子类别设置为默认

时间:2015-12-31 作者:whyzar

如何从我创建的帖子中设置默认类别?我已尝试修改设置选项,但无法显示我想要的默认类别。当前默认值为“未分类”

1 个回复
最合适的回答,由SO网友:marty 整理而成

我最近刚刚用以下代码使用自定义的帖子类型和自定义分类法完成了这项工作。

function cpt_assign_term($post_id) {

    $current_post = get_post( $post_id );

    // Only apply to new posts.
    if ( $current_post->post_date == $current_post->post_modified ) {
        wp_set_object_terms( $post_id, \'default-term_name-or-id\', \'category\', true );
    }
}
add_action( \'save_post_{your-post-type}\', \'cpt_assign_term\' );

https://codex.wordpress.org/Function_Reference/wp_set_object_terms