wp_dropdown_users

wp_dropdown_users

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

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('wp_dropdown_users') is found 1 times:

  • /wp-includes/user.php line 1779
    1775
    1776
    1777
    1778
    1779
    1780
    1781
    1782
    1783
    1784
    1785
         * @since 2.3.0
         *
         * @param string $output HTML output generated by wp_dropdown_users().
         */
        $html = apply_filters( 'wp_dropdown_users', $output );
     
        if ( $parsed_args['echo'] ) {
            echo $html;
        }
        return $html;
    }