Changeset 32673 for trunk/src/wp-includes/post.php
- Timestamp:
- 05/31/2015 04:53:12 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/post.php
r32647 r32673 1625 1625 * ones the default is 'Parent Page:'. 1626 1626 * - all_items - String for the submenu. Default is All Posts/All Pages. 1627 * - featured_image - Default is Featured Image. 1628 * - set_featured_image - Default is Set featured image. 1629 * - remove_featured_image - Default is Remove featured image. 1630 * - use_featured_image - Default is Use as featured image. 1627 1631 * - menu_name - Default is the same as `name`. 1628 1632 * … … 1631 1635 * 1632 1636 * @since 3.0.0 1637 * @since 4.3.0 Added the `featured_image`, `set_featured_image`, `remove_featured_image`, and `use_featured_image` labels. 1633 1638 * @access private 1634 1639 * … … 1649 1654 'not_found_in_trash' => array( __('No posts found in Trash.'), __('No pages found in Trash.') ), 1650 1655 'parent_item_colon' => array( null, __('Parent Page:') ), 1651 'all_items' => array( __( 'All Posts' ), __( 'All Pages' ) ) 1656 'all_items' => array( __( 'All Posts' ), __( 'All Pages' ) ), 1657 'featured_image' => array( __( 'Featured Image' ), __( 'Featured Image' ) ), 1658 'set_featured_image' => array( __( 'Set featured image' ), __( 'Set featured image' ) ), 1659 'remove_featured_image' => array( __( 'Remove featured image' ), __( 'Remove featured image' ) ), 1660 'use_featured_image' => array( __( 'Use as featured image' ), __( 'Use as featured image' ) ), 1652 1661 ); 1653 1662 $nohier_vs_hier_defaults['menu_name'] = $nohier_vs_hier_defaults['name'];
Note: See TracChangeset
for help on using the changeset viewer.