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 |
---|---|
3881 | * @type string $file Filename being edited. |
3882 | * @type WP_Theme $theme Theme being edited when on theme editor. |
3883 | * @type string $plugin Plugin being edited when on plugin editor. |
3884 | * @type array $codemirror Additional CodeMirror setting overrides. |
3885 | * @type array $csslint CSSLint rule overrides. |
3886 | * @type array $jshint JSHint rule overrides. |
3887 | * @type array $htmlhint JSHint rule overrides. |
3888 | * } |
3889 | */ |
3890 | return apply_filters( 'wp_code_editor_settings', $settings, $args ); |
3891 | } |
3892 |
|
3893 | /** |
3894 | * Retrieves the contents of the search WordPress query variable. |
3895 | * |
3896 | * The search query string is passed through esc_attr() to ensure that it is safe |
3897 | * for placing in an html attribute. |
3898 | * |
3899 | * @since 2.3.0 |