कस्टम टैक्सोनॉमी एडमिन पेज से टैग क्लाउड कैसे निकालें?


10

जब मेरे पास वह वर्गीकरण दर्ज होता है जो मेरे पास होता है तो मुझे लगता है कि इसे छिपाया जा सकता है:

'show_tagcloud' => false

डिफ़ॉल्ट श्रेणी पृष्ठ एक टैग क्लाउड नहीं दिखाता है इसलिए मेरा कस्टम वर्गीकरण पृष्ठ क्यों है, मैं इसे कैसे अक्षम कर सकता हूं?

यहाँ छवि विवरण दर्ज करें

register_taxonomy('gmc_region', 'recipe', 
array(
  'labels' => array( 
    'name' => _x( 'Regions', 'taxonomy general name' ), 
    'singular_name' => _x( 'Region', 'taxonomy singular name' ),
    'popular_items' => __( 'Popular Regions' ),
    'search_items' => __( 'Search Regions' ), 
    'all_items' => __( 'All Regions' ), 
    'parent_item' => __( 'Parent Region' ), 
    'parent_item_colon' => __( 'Parent Region:' ), 
    'edit_item' => __( 'Edit Region' ), 
    'update_item' => __( 'Update Region' ), 
    'add_new_item' => __( 'Add New Region' ), 
    'new_item_name' => __( 'New Region Name' ), 
    'menu_name' => __( 'Regions' ), 
  ),
  'rewrite' => array( 
    'slug' => 'regions',
    'with_front' => false
  ), 
  'show_in_nav_menus' => false,
  'show_ui' => false,
  'show_tagcloud' => false
)
);

धन्यवाद, केविन


क्या हम आपका कोड देख सकते हैं जो आपकी टैक्सोनोमी को पंजीकृत करता है?
जेरेड

जवाबों:


17

थोड़ा देर से लेकिन मैंने अभी-अभी सीखा कि टैक्सोनॉमी क्लाउड कैसे हटाएं। आपके वर्गीकरण लेबल की परिभाषा में यह रेखा बदल जाती है

'popular_items' => __( 'Popular Regions' ),

इसके लिए

'popular_items' => NULL,

और टैग क्लाउड अब दिखाई नहीं देगा

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.