apply_filters( 'wp_dropdown_users', string $output )
- Since
- 2.3.0
Filters the wp_dropdown_users() HTML output.
Parameters
$outputstring- HTML output generated by wp_dropdown_users().
Fired at · 1
wp-includes/user.php:1858wp_dropdown_users()
Source
View on Trac ↗View on GitHub ↗
1852 * Filters the wp_dropdown_users() HTML output.1853 *1854 * @since 2.3.01855 *1856 * @param string $output HTML output generated by wp_dropdown_users().1857 */1858 $html = apply_filters( 'wp_dropdown_users', $output );1859 1860 if ( $parsed_args['echo'] ) {1861 echo $html;1862 }1863 return $html;1864}
History
Introduced in 2.3.0. Unchanged from 6.7.7 through 7.1.0.
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 7.0.4 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.