wp_insert_term doesn’t work with custom post type’s taxonomy

try init instead of after_setup_theme

function example_insert_category() {
    wp_insert_term(
        'Example Category',
        'friendsof'
    );
}

add_action( 'init', 'example_insert_category' );

Leave a Comment