WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 5825 | * |
| 5826 | * @see wp_prepare_themes_for_js() |
| 5827 | * @see themes_api() |
| 5828 | * @see WP_Customize_Manager::__construct() |
| 5829 | * |
| 5830 | * @param array $themes Nested array of theme data. |
| 5831 | * @param array $args List of arguments, such as page, search term, and tags to query for. |
| 5832 | * @param WP_Customize_Manager $manager Instance of Customize manager. |
| 5833 | */ |
| 5834 | $themes = apply_filters( 'customize_load_themes', $themes, $args, $this ); |
| 5835 | |
| 5836 | wp_send_json_success( $themes ); |
| 5837 | } |
| 5838 | |
| 5839 | |
| 5840 | /** |
| 5841 | * Callback for validating the header_textcolor value. |
| 5842 | * |
| 5843 | * Accepts 'blank', and otherwise uses sanitize_hex_color_no_hash(). |