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:1779wp_dropdown_users()
Source
View on Trac ↗View on GitHub ↗
1773 * Filters the wp_dropdown_users() HTML output.1774 *1775 * @since 2.3.01776 *1777 * @param string $output HTML output generated by wp_dropdown_users().1778 */1779 $html = apply_filters( 'wp_dropdown_users', $output );1780 1781 if ( $parsed_args['echo'] ) {1782 echo $html;1783 }1784 return $html;1785}
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.7.7 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.