Changeset 37541
- Timestamp:
- 05/23/2016 06:56:06 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/general-template.php
r37530 r37541 175 175 * will be displayed. The default search form is HTML, which will be displayed. 176 176 * There is a filter applied to the search form HTML in order to edit or replace 177 * it. The filter is 'get_search_form'.177 * it. The filter is {@see 'get_search_form'}. 178 178 * 179 179 * This function is primarily used by themes which want to hardcode the search … … 181 181 * 182 182 * There is also an action that is called whenever the function is run called, 183 * 'pre_get_search_form'. This can be useful for outputting JavaScript that the183 * {@see 'pre_get_search_form'}. This can be useful for outputting JavaScript that the 184 184 * search relies on or various formatting that applies to the beginning of the 185 185 * search. To give a few examples of what it can be used for. … … 567 567 * Theme container function for the 'wp_meta' action. 568 568 * 569 * The 'wp_meta'action can have several purposes, depending on how you use it,569 * The {@see 'wp_meta'} action can have several purposes, depending on how you use it, 570 570 * but one purpose might have been to allow for theme switching. 571 571 * … … 2181 2181 * 2182 2182 * Unlike the_date() this function will always return the date. 2183 * Modify output with 'get_the_date'filter.2183 * Modify output with the {@see 'get_the_date'} filter. 2184 2184 * 2185 2185 * @since 3.0.0 … … 2516 2516 2517 2517 /** 2518 * Fire the wp_head action 2518 * Fire the wp_head action. 2519 * 2520 * See {@see 'wp_head'}. 2519 2521 * 2520 2522 * @since 1.2.0 … … 2530 2532 2531 2533 /** 2532 * Fire the wp_footer action 2534 * Fire the wp_footer action. 2535 * 2536 * See {@see 'wp_footer'}. 2533 2537 * 2534 2538 * @since 1.5.1 … … 2693 2697 2694 2698 /** 2695 * Display a noindex meta tag if required by the blog configuration.2699 * Displays a noindex meta tag if required by the blog configuration. 2696 2700 * 2697 2701 * If a blog is marked as not being public then the noindex meta tag will be 2698 * output to tell web robots not to index the page content. Add this to the wp_head action. 2699 * Typical usage is as a wp_head callback. add_action( 'wp_head', 'noindex' ); 2702 * output to tell web robots not to index the page content. Add this to the 2703 * {@see 'wp_head'} action. 2704 * 2705 * Typical usage is as a {@see 'wp_head'} callback: 2706 * 2707 * add_action( 'wp_head', 'noindex' ); 2700 2708 * 2701 2709 * @see wp_no_robots … … 3273 3281 3274 3282 /** 3275 * Display the URL of a WordPress admin CSS file.3276 * 3277 * @see WP_Styles::_css_href and its style_loader_srcfilter.3283 * Displays the URL of a WordPress admin CSS file. 3284 * 3285 * @see WP_Styles::_css_href and its {@see 'style_loader_src'} filter. 3278 3286 * 3279 3287 * @since 2.3.0 … … 3305 3313 * 3306 3314 * "Intelligently" decides to enqueue or to print the CSS file. If the 3307 * 'wp_print_styles'action has *not* yet been called, the CSS file will be3308 * enqueued. If the wp_print_styles action *has*been called, the CSS link will3315 * {@see 'wp_print_styles'} action has *not* yet been called, the CSS file will be 3316 * enqueued. If the {@see 'wp_print_styles'} action has been called, the CSS link will 3309 3317 * be printed. Printing may be forced by passing true as the $force_echo 3310 3318 * (second) parameter. … … 3370 3378 3371 3379 /** 3372 * Display the XHTML generator that is generated on the wp_head hook. 3380 * Displays the XHTML generator that is generated on the wp_head hook. 3381 * 3382 * See {@see 'wp_head'}. 3373 3383 * 3374 3384 * @since 2.5.0 … … 3389 3399 * 3390 3400 * Returns the correct generator type for the requested output format. Allows 3391 * for a plugin to filter generators overall the the_generatorfilter.3401 * for a plugin to filter generators overall the {@see 'the_generator'} filter. 3392 3402 * 3393 3403 * @since 2.5.0 … … 3413 3423 * Returns the correct generator type for the requested output format. Allows 3414 3424 * for a plugin to filter generators on an individual basis using the 3415 * 'get_the_generator_{$type}'filter.3425 * {@see 'get_the_generator_$type'} filter. 3416 3426 * 3417 3427 * @since 2.5.0
Note: See TracChangeset
for help on using the changeset viewer.