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
2215                $gen = '<admin:generatorAgent rdf:resource="http://wordpress.org/?v=' . get_bloginfo_rss( 'version' ) . '" />';
2216                break;
2217           case 'comment':
2218                $gen = '<!-- generator="WordPress/' . get_bloginfo( 'version' ) . '" -->';
2219                break;
2220           case 'export':
2221                $gen = '<!-- generator="WordPress/' . get_bloginfo_rss('version') . '" created="'. date('Y-m-d H:i') . '"-->';
2222                break;
2223      }
2224      return apply_filters( "get_the_generator_{$type}", $gen, $type );
2225 }
2226
2227 /**
2228  * Outputs the html checked attribute.
2229  *
2230  * Compares the first two arguments and if identical marks as checked
2231  *
2232  * @since 1.0
2233  *