myblogs_options

myblogs_options

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

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('myblogs_options') is found 2 times:

  • /wp-admin/my-sites.php line 124
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    *
     * @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
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
        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();
    }
    ?>