myblogs_options

myblogs_options

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.4.3

apply_filters('myblogs_options') is found 2 times:

  • /wp-admin/my-sites.php line 124
    	 *
    	 * @param string $settings_html The settings HTML markup. Default empty.
    	 * @param string $context       Context of the setting (global or site-specific). Default 'global'.
    	 */
    	$settings_html = apply_filters( 'myblogs_options', '', 'global' );
    
    	if ( $settings_html ) {
    		echo '<h3>' . __( 'Global Settings' ) . '</h3>';
    		echo $settings_html;
    	}
    
    
  • /wp-admin/my-sites.php line 158
     
    		echo "<p class='my-sites-actions'>" . $actions . '</p>';
    
    		/** This filter is documented in wp-admin/my-sites.php */
    		echo apply_filters( 'myblogs_options', '', $user_blog );
    
    		echo '</li>';
    
    		restore_current_blog();
    	}
    	?>