Changeset 37498 for trunk/src/wp-includes/general-template.php
- Timestamp:
- 05/22/2016 06:25:45 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/general-template.php
r37487 r37498 204 204 205 205 /** 206 * Filter the HTML format of the search form.206 * Filters the HTML format of the search form. 207 207 * 208 208 * @since 3.6.0 … … 239 239 240 240 /** 241 * Filter the HTML output of the search form.241 * Filters the HTML output of the search form. 242 242 * 243 243 * @since 2.7.0 … … 276 276 if ( $echo ) { 277 277 /** 278 * Filter the HTML output for the Log In/Log Out link.278 * Filters the HTML output for the Log In/Log Out link. 279 279 * 280 280 * @since 1.5.0 … … 309 309 310 310 /** 311 * Filter the logout URL.311 * Filters the logout URL. 312 312 * 313 313 * @since 2.8.0 … … 338 338 339 339 /** 340 * Filter the login URL.340 * Filters the login URL. 341 341 * 342 342 * @since 2.8.0 … … 359 359 function wp_registration_url() { 360 360 /** 361 * Filter the user registration URL.361 * Filters the user registration URL. 362 362 * 363 363 * @since 3.6.0 … … 420 420 421 421 /** 422 * Filter the default login form output arguments.422 * Filters the default login form output arguments. 423 423 * 424 424 * @since 3.0.0 … … 431 431 432 432 /** 433 * Filter content to display at the top of the login form.433 * Filters content to display at the top of the login form. 434 434 * 435 435 * The filter evaluates just following the opening form tag element. … … 443 443 444 444 /** 445 * Filter content to display in the middle of the login form.445 * Filters content to display in the middle of the login form. 446 446 * 447 447 * The filter evaluates just following the location where the 'login-password' … … 456 456 457 457 /** 458 * Filter content to display at the bottom of the login form.458 * Filters content to display at the bottom of the login form. 459 459 * 460 460 * The filter evaluates just preceding the closing form tag element. … … 510 510 511 511 /** 512 * Filter the Lost Password URL.512 * Filters the Lost Password URL. 513 513 * 514 514 * @since 2.8.0 … … 546 546 547 547 /** 548 * Filter the HTML link to the Registration or Admin page.548 * Filters the HTML link to the Registration or Admin page. 549 549 * 550 550 * Users are sent to the admin page if logged-in, or the registration page … … 748 748 if ( $url ) { 749 749 /** 750 * Filter the URL returned by get_bloginfo().750 * Filters the URL returned by get_bloginfo(). 751 751 * 752 752 * @since 2.0.5 … … 758 758 } else { 759 759 /** 760 * Filter the site information returned by get_bloginfo().760 * Filters the site information returned by get_bloginfo(). 761 761 * 762 762 * @since 0.71 … … 803 803 804 804 /** 805 * Filter the site icon URL.805 * Filters the site icon URL. 806 806 * 807 807 * @site 4.4.0 … … 901 901 902 902 /** 903 * Filter the custom logo output.903 * Filters the custom logo output. 904 904 * 905 905 * @since 4.5.0 … … 934 934 935 935 /** 936 * Filter the document title before it is generated.936 * Filters the document title before it is generated. 937 937 * 938 938 * Passing a non-empty value will short-circuit wp_get_document_title(), … … 1014 1014 1015 1015 /** 1016 * Filter the separator for the document title.1016 * Filters the separator for the document title. 1017 1017 * 1018 1018 * @since 4.4.0 … … 1023 1023 1024 1024 /** 1025 * Filter the parts of the document title.1025 * Filters the parts of the document title. 1026 1026 * 1027 1027 * @since 4.4.0 … … 1180 1180 1181 1181 /** 1182 * Filter the parts of the page title.1182 * Filters the parts of the page title. 1183 1183 * 1184 1184 * @since 4.0.0 … … 1197 1197 1198 1198 /** 1199 * Filter the text of the page title.1199 * Filters the text of the page title. 1200 1200 * 1201 1201 * @since 2.0.0 … … 1238 1238 1239 1239 /** 1240 * Filter the page title for a single post.1240 * Filters the page title for a single post. 1241 1241 * 1242 1242 * @since 0.71 … … 1275 1275 1276 1276 /** 1277 * Filter the post type archive title.1277 * Filters the post type archive title. 1278 1278 * 1279 1279 * @since 3.1.0 … … 1345 1345 if ( is_category() ) { 1346 1346 /** 1347 * Filter the category archive page title.1347 * Filters the category archive page title. 1348 1348 * 1349 1349 * @since 2.0.10 … … 1354 1354 } elseif ( is_tag() ) { 1355 1355 /** 1356 * Filter the tag archive page title.1356 * Filters the tag archive page title. 1357 1357 * 1358 1358 * @since 2.3.0 … … 1363 1363 } elseif ( is_tax() ) { 1364 1364 /** 1365 * Filter the custom taxonomy archive page title.1365 * Filters the custom taxonomy archive page title. 1366 1366 * 1367 1367 * @since 3.1.0 … … 1493 1493 1494 1494 /** 1495 * Filter the archive title.1495 * Filters the archive title. 1496 1496 * 1497 1497 * @since 4.1.0 … … 1528 1528 function get_the_archive_description() { 1529 1529 /** 1530 * Filter the archive description.1530 * Filters the archive description. 1531 1531 * 1532 1532 * @since 4.1.0 … … 1586 1586 1587 1587 /** 1588 * Filter the archive link content.1588 * Filters the archive link content. 1589 1589 * 1590 1590 * @since 2.6.0 … … 1675 1675 1676 1676 /** 1677 * Filter the SQL WHERE clause for retrieving archives.1677 * Filters the SQL WHERE clause for retrieving archives. 1678 1678 * 1679 1679 * @since 2.2.0 … … 1685 1685 1686 1686 /** 1687 * Filter the SQL JOIN clause for retrieving archives.1687 * Filters the SQL JOIN clause for retrieving archives. 1688 1688 * 1689 1689 * @since 2.2.0 … … 2066 2066 if ( $echo ) { 2067 2067 /** 2068 * Filter the HTML calendar output.2068 * Filters the HTML calendar output. 2069 2069 * 2070 2070 * @since 3.0.0 … … 2158 2158 2159 2159 /** 2160 * Filter the date a post was published for display.2160 * Filters the date a post was published for display. 2161 2161 * 2162 2162 * @since 0.71 … … 2203 2203 2204 2204 /** 2205 * Filter the date a post was published.2205 * Filters the date a post was published. 2206 2206 * 2207 2207 * @since 3.0.0 … … 2230 2230 2231 2231 /** 2232 * Filter the date a post was last modified for display.2232 * Filters the date a post was last modified for display. 2233 2233 * 2234 2234 * @since 2.1.0 … … 2264 2264 2265 2265 /** 2266 * Filter the date a post was last modified.2266 * Filters the date a post was last modified. 2267 2267 * 2268 2268 * @since 2.1.0 … … 2284 2284 function the_time( $d = '' ) { 2285 2285 /** 2286 * Filter the time a post was written for display.2286 * Filters the time a post was written for display. 2287 2287 * 2288 2288 * @since 0.71 … … 2319 2319 2320 2320 /** 2321 * Filter the time a post was written.2321 * Filters the time a post was written. 2322 2322 * 2323 2323 * @since 1.5.0 … … 2359 2359 2360 2360 /** 2361 * Filter the localized time a post was written.2361 * Filters the localized time a post was written. 2362 2362 * 2363 2363 * @since 2.6.0 … … 2380 2380 function the_modified_time($d = '') { 2381 2381 /** 2382 * Filter the localized time a post was last modified, for display.2382 * Filters the localized time a post was last modified, for display. 2383 2383 * 2384 2384 * @since 2.0.0 … … 2407 2407 2408 2408 /** 2409 * Filter the localized time a post was last modified.2409 * Filters the localized time a post was last modified. 2410 2410 * 2411 2411 * @since 2.0.0 … … 2445 2445 2446 2446 /** 2447 * Filter the localized time a post was last modified.2447 * Filters the localized time a post was last modified. 2448 2448 * 2449 2449 * @since 2.8.0 … … 2468 2468 2469 2469 /** 2470 * Filter the weekday on which the post was written, for display.2470 * Filters the weekday on which the post was written, for display. 2471 2471 * 2472 2472 * @since 0.71 … … 2503 2503 2504 2504 /** 2505 * Filter the localized date on which the post was written, for display.2505 * Filters the localized date on which the post was written, for display. 2506 2506 * 2507 2507 * @since 0.71 … … 2566 2566 2567 2567 /** 2568 * Filter whether to display the posts feed link.2568 * Filters whether to display the posts feed link. 2569 2569 * 2570 2570 * @since 4.4.0 … … 2577 2577 2578 2578 /** 2579 * Filter whether to display the comments feed link.2579 * Filters whether to display the comments feed link. 2580 2580 * 2581 2581 * @since 4.4.0 … … 2741 2741 2742 2742 /** 2743 * Filter the site icon meta tags, so Plugins can add their own.2743 * Filters the site icon meta tags, so Plugins can add their own. 2744 2744 * 2745 2745 * @since 4.3.0 … … 2788 2788 2789 2789 /** 2790 * Filter whether the user can access the rich (Visual) editor.2790 * Filters whether the user can access the rich (Visual) editor. 2791 2791 * 2792 2792 * @since 2.1.0 … … 2815 2815 2816 2816 /** 2817 * Filter which editor should be displayed by default.2817 * Filters which editor should be displayed by default. 2818 2818 * 2819 2819 * @since 2.5.0 … … 2864 2864 function get_search_query( $escaped = true ) { 2865 2865 /** 2866 * Filter the contents of the search query variable.2866 * Filters the contents of the search query variable. 2867 2867 * 2868 2868 * @since 2.3.0 … … 2887 2887 function the_search_query() { 2888 2888 /** 2889 * Filter the contents of the search query variable for display.2889 * Filters the contents of the search query variable for display. 2890 2890 * 2891 2891 * @since 2.3.0 … … 2923 2923 2924 2924 /** 2925 * Filter the language attributes for display in the html tag.2925 * Filters the language attributes for display in the html tag. 2926 2926 * 2927 2927 * @since 2.5.0 … … 3111 3111 3112 3112 /** 3113 * Filter the paginated links for the given archive pages.3113 * Filters the paginated links for the given archive pages. 3114 3114 * 3115 3115 * @since 3.0.0 … … 3291 3291 3292 3292 /** 3293 * Filter the URI of a WordPress admin CSS file.3293 * Filters the URI of a WordPress admin CSS file. 3294 3294 * 3295 3295 * @since 2.3.0 … … 3334 3334 3335 3335 /** 3336 * Filter the stylesheet link to the specified CSS file.3336 * Filters the stylesheet link to the specified CSS file. 3337 3337 * 3338 3338 * If the site is set to display right-to-left, the RTL stylesheet link … … 3376 3376 function wp_generator() { 3377 3377 /** 3378 * Filter the output of the XHTML generator tag.3378 * Filters the output of the XHTML generator tag. 3379 3379 * 3380 3380 * @since 2.5.0 … … 3397 3397 function the_generator( $type ) { 3398 3398 /** 3399 * Filter the output of the XHTML generator tag for display.3399 * Filters the output of the XHTML generator tag for display. 3400 3400 * 3401 3401 * @since 2.5.0 … … 3472 3472 3473 3473 /** 3474 * Filter the HTML for the retrieved generator type.3474 * Filters the HTML for the retrieved generator type. 3475 3475 * 3476 3476 * The dynamic portion of the hook name, `$type`, refers to the generator type.
Note: See TracChangeset
for help on using the changeset viewer.