Make WordPress Core


Ignore:
Timestamp:
10/15/2010 02:53:55 PM (13 years ago)
Author:
ryan
Message:

nav_menu and post_format taxonomies should not be public. fixes #15107

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/taxonomy.php

    r15806 r15818  
    3838
    3939    register_taxonomy( 'nav_menu', 'nav_menu_item', array(
     40        'public' => false,
    4041        'hierarchical' => false,
    4142        'labels' => array(
     
    7475
    7576    register_taxonomy( 'post_format', array('post', 'page', 'attachment'), array(
     77        'public' => false,
    7678        'hierarchical' => false,
    7779        'labels' => array(
Note: See TracChangeset for help on using the changeset viewer.