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 |
---|---|
3646 | * @type string $file Filename being edited. |
3647 | * @type WP_Theme $theme Theme being edited when on theme editor. |
3648 | * @type string $plugin Plugin being edited when on plugin editor. |
3649 | * @type array $codemirror Additional CodeMirror setting overrides. |
3650 | * @type array $csslint CSSLint rule overrides. |
3651 | * @type array $jshint JSHint rule overrides. |
3652 | * @type array $htmlhint JSHint rule overrides. |
3653 | * } |
3654 | */ |
3655 | return apply_filters( 'wp_code_editor_settings', $settings, $args ); |
3656 | } |
3657 |
|
3658 | /** |
3659 | * Retrieves the contents of the search WordPress query variable. |
3660 | * |
3661 | * The search query string is passed through esc_attr() to ensure that it is safe |
3662 | * for placing in an html attribute. |
3663 | * |
3664 | * @since 2.3.0 |