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:1874wp_dropdown_users()
Source
View on Trac ↗View on GitHub ↗
1868 * Filters the wp_dropdown_users() HTML output.1869 *1870 * @since 2.3.01871 *1872 * @param string $output HTML output generated by wp_dropdown_users().1873 */1874 $html = apply_filters( 'wp_dropdown_users', $output );1875 1876 if ( $parsed_args['echo'] ) {1877 echo $html;1878 }1879 return $html;1880}
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.1.0 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.