Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: muplugins_loaded

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
405 if ( is_dir( WPMU_PLUGIN_DIR ) ) {
406      if ( $dh = opendir( WPMU_PLUGIN_DIR ) ) {
407           while ( ( $plugin = readdir( $dh ) ) !== false ) {
408                if ( substr( $plugin, -4 ) == '.php' ) {
409                     include_once( WPMU_PLUGIN_DIR . '/' . $plugin );
410                }
411           }
412      }
413 }
414 do_action('muplugins_loaded');
415
416 /**
417  * Used to guarantee unique hash cookies
418  * @since 1.5
419  */
420 define('COOKIEHASH', md5(get_option('siteurl')));
421
422 /**
423  * Should be exactly the same as the default value of SECRET_KEY in wp-config-sample.php