Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: post_type_labels_{$post_type}

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1997       *  - `post_type_labels_page`
1998       *  - `post_type_labels_attachment`
1999       *
2000       * @since 3.5.0
2001       *
2002       * @see get_post_type_labels() for the full list of labels.
2003       *
2004       * @param object $labels Object with labels for the post type as member variables.
2005       */
2006      $labels = apply_filters( "post_type_labels_{$post_type}", $labels );
2007
2008      // Ensure that the filtered labels contain all required default values.
2009      $labels = (object) array_merge( (array) $default_labels, (array) $labels );
2010
2011      return $labels;
2012 }
2013
2014 /**
2015  * Builds an object with custom-something object (post type, taxonomy) labels