FAQ Taxonomy.
SSS tax snippet.
// Register Custom Taxonomy function custom_taxonomy() { $labels = array( 'name' => _x( 'SSS Kategorileri', 'Taxonomy General Name', 'text_domain' ), 'singular_name' => _x( 'SSS Kategorileri', 'Taxonomy Singular Name', 'text_domain' ), 'menu_name' => __( 'SS Kategorileri', 'text_domain' ), 'all_items' => __( 'Tümü', 'text_domain' ), 'parent_item' => __( 'Alt:', 'text_domain' ), 'parent_item_colon' => __( 'Üst Kategori:', 'text_domain' ), 'new_item_name' => __( 'Yeni Ekle', 'text_domain' ), 'add_new_item' => __( 'Yeni Ekle', 'text_domain' ), 'edit_item' => __( 'Güncelle', 'text_domain' ), 'update_item' => __( 'Güncelle', 'text_domain' ), 'view_item' => __( 'Göster', 'text_domain' ), 'separate_items_with_commas' => __( 'Virgüller ile ayırabilirsiniz.', 'text_domain' ), 'add_or_remove_items' => __( 'Ekle/Kaldır', 'text_domain' ), 'choose_from_most_used' => __( 'Sık kullanılanlar araısndan seçin.', 'text_domain' ), 'popular_items' => __( 'Popüler olanlar', 'text_domain' ), 'search_items' => __( 'İçeriklerde Ara', 'text_domain' ), 'not_found' => __( 'Bulunamadı', 'text_domain' ), 'no_terms' => __( 'Gösterilecek içerik bulunamadı', 'text_domain' ), 'items_list' => __( 'Tümü', 'text_domain' ), 'items_list_navigation' => __( 'Tümü', 'text_domain' ), ); $args = array( 'labels' => $labels, 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_admin_column' => true, 'show_in_nav_menus' => false, 'show_tagcloud' => false, ); register_taxonomy( 'faq_category', array( 'post' ), $args ); } add_action( 'init', 'custom_taxonomy', 0 );