Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: get_the_generator_{$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
2820       *
2821       * The dynamic portion of the hook name, $type, refers to the generator type.
2822       *
2823       * @since 2.5.0
2824       *
2825       * @param string $gen  The HTML markup output to 'wp_head()'.
2826       * @param string $type The type of generator. Accepts 'html', 'xhtml', 'atom',
2827       *                     'rss2', 'rdf', 'comment', 'export'.
2828       */
2829      return apply_filters( "get_the_generator_{$type}", $gen, $type );
2830 }
2831
2832 /**
2833  * Outputs the html checked attribute.
2834  *
2835  * Compares the first two arguments and if identical marks as checked
2836  *
2837  * @since 1.0.0
2838  *