Action hook 'myblogs_allblogs_options'

in WP Core File wp-admin/my-sites.php at line 107

View Source

myblogs_allblogs_options

Action Hook
Description
Fires before the sites list on the My Sites screen.

Hook Information

File Location wp-admin/my-sites.php View on GitHub
Hook Type Action
Line Number 107

Hook Parameters

This hook doesn't accept any parameters.

Usage Examples

Basic Usage
<?php
// Hook into myblogs_allblogs_options
add_action('myblogs_allblogs_options', 'my_custom_function');

function my_custom_function() {
    // Your custom code here
}

Source Code Context

wp-admin/my-sites.php:107 - How this hook is used in WordPress core
<?php
 102  	/**
 103  	 * Fires before the sites list on the My Sites screen.
 104  	 *
 105  	 * @since 3.0.0
 106  	 */
 107  	do_action( 'myblogs_allblogs_options' );
 108  	?>
 109  	<br clear="all" />
 110  	<ul class="my-sites striped">
 111  	<?php
 112  	/**

PHP Documentation

<?php
/**
	 * Fires before the sites list on the My Sites screen.
	 *
	 * @since 3.0.0
	 */
Quick Info
  • Hook Type: Action
  • Parameters: 0
  • File: wp-admin/my-sites.php
Related Hooks

Related hooks will be displayed here in future updates.