Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: admin_footer-{$hook_suffix}

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
97  *
98  * The dynamic portion of the hook name, `$hook_suffix`,
99  * refers to the global hook suffix of the current page.
100  *
101  * @since 2.8.0
102  *
103  * @global string $hook_suffix
104  * @param string $hook_suffix The current admin page.
105  */
106 do_action( "admin_footer-{$hook_suffix}" );
107
108 // get_site_option() won't exist when auto upgrading from <= 2.7
109 if ( function_exists('get_site_option') ) {
110      if ( false === get_site_option('can_compress_scripts') )
111           compression_test();
112 }
113
114 ?>
115