Docs: Apply inline @see tags to hooks referenced in DocBlocks for root directory files.

Applying these specially-crafted `@see` tags allows the Code Reference parser to recognize and link these elements as hooks.

See #36921.

Built from https://develop.svn.wordpress.org/trunk@37536


git-svn-id: http://core.svn.wordpress.org/trunk@37504 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes
2016-05-23 17:07:28 +00:00
parent f82641ad0e
commit e52762a725
4 changed files with 15 additions and 9 deletions

View File

@@ -32,13 +32,17 @@ $wp_query->is_404 = false;
do_action( 'activate_header' );
/**
* Adds an action hook specific to this page that fires on wp_head
* Adds an action hook specific to this page.
*
* Fires on {@see 'wp_head'}.
*
* @since MU
*/
function do_activate_header() {
/**
* Fires before the Site Activation page is loaded, but on the wp_head action.
/**
* Fires before the Site Activation page is loaded.
*
* Fires on the {@see 'wp_head'} action.
*
* @since 3.0.0
*/