/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/



@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/
function create_auto_parts_cpt() {
    register_post_type('auto_parts', array(
        'label' => 'Auto Parts',
        'public' => true,
        'has_archive' => true,
        'menu_icon' => 'dashicons-car',
        'supports' => array('title', 'editor', 'thumbnail'),
    ));
    
    register_taxonomy('part_category', 'auto_parts', array(
        'label' => 'Danh mục phụ tùng',
        'hierarchical' => true,
        'public' => true,
    ));
    
    register_taxonomy('car_brand', 'auto_parts', array(
        'label' => 'Thương hiệu xe',
        'hierarchical' => false,
        'public' => true,
    ));
}
add_action('init', 'create_auto_parts_cpt');


}