• kreynol7

    (@kreynol7)


    Hi how do you Change Default Position of Registered Taxonomy from side to normal. My code below registers a custom taxonomy but it shows up on the right side of the add new post, i want the taxonomy to show up under the postbox and title fields. Therefore somehow, i need to set ‘menu_position’ => ‘normal’ or something… Thanks

    register_taxonomy('likes','profile', array(
    		'public' => true,
    		'labels' => array(
    			'name' => 'Pear My Likes',
    			'menu_name' => 'My Likes',
    			'search_items' =>  __( 'Search Eikon Likes' ),
        		'popular_items' => __( 'Popular Eikon Likes' ),
        		'all_items' => __( 'All Eikon Likes' ),
    			'edit_item' => __( 'Edit Eikon Likes' ),
        		'update_item' => __( 'Update Eikon Likes' ),
        		'add_new_item' => __( 'Add or Select Your Likes' ),
        		'new_item_name' => __( 'New Eikon Likes Name' ),
    			'add_or_remove_items' => __( 'Add or remove Eikon Likes' ),
        		'choose_from_most_used' => __( 'Choose from the most used Eikon Likes' ),
    		),
    		'hierarchical' => true
    	));
  • The topic ‘Change Default Position of Registered Taxonomy from side to normal’ is closed to new replies.