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:1845wp_dropdown_users()
Source
View on Trac ↗View on GitHub ↗
1839 * Filters the wp_dropdown_users() HTML output.1840 *1841 * @since 2.3.01842 *1843 * @param string $output HTML output generated by wp_dropdown_users().1844 */1845 $html = apply_filters( 'wp_dropdown_users', $output );1846 1847 if ( $parsed_args['echo'] ) {1848 echo $html;1849 }1850 return $html;1851}
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 6.8.8 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.