wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



_wp_nav_menu_meta_box_object › WordPress Function

Od3.0.0
Przestarzałyn/a
_wp_nav_menu_meta_box_object ( $data_object = null )
Dostęp:
  • private
Parametry:
  • (object) $data_object The post type or taxonomy meta-object.
    Wymagane: Nie
    Domyślny: null
Powrót:
  • (object) The post type or taxonomy object.
Zdefiniowane na:
Codex:

Adds custom arguments to some of the meta box object types.



Źródło

function _wp_nav_menu_meta_box_object( $data_object = null ) {
	if ( isset( $data_object->name ) ) {

		if ( 'page' === $data_object->name ) {
			$data_object->_default_query = array(
				'orderby'     => 'menu_order title',
				'post_status' => 'publish',
			);

			// Posts should show only published items.
		} elseif ( 'post' === $data_object->name ) {
			$data_object->_default_query = array(
				'post_status' => 'publish',
			);

			// Categories should be in reverse chronological order.
		} elseif ( 'category' === $data_object->name ) {
			$data_object->_default_query = array(
				'orderby' => 'id',
				'order'   => 'DESC',
			);

			// Custom post types should show only published items.
		} else {
			$data_object->_default_query = array(
				'post_status' => 'publish',
			);
		}
	}

	return $data_object;
}