Changeset 37499 for trunk/src/wp-includes/link-template.php
- Timestamp:
- 05/22/2016 06:26:44 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/link-template.php
r37342 r37499 173 173 174 174 /** 175 * Filter the category that gets used in the %category% permalink token.175 * Filters the category that gets used in the %category% permalink token. 176 176 * 177 177 * @since 3.5.0 … … 317 317 318 318 /** 319 * Filter the permalink for a page.319 * Filters the permalink for a page. 320 320 * 321 321 * @since 1.5.0 … … 365 365 366 366 /** 367 * Filter the permalink for a non-page_on_front page.367 * Filters the permalink for a non-page_on_front page. 368 368 * 369 369 * @since 2.1.0 … … 536 536 537 537 /** 538 * Filter the day archive permalink.538 * Filters the day archive permalink. 539 539 * 540 540 * @since 1.5.0 … … 817 817 if ( 'category' == $taxonomy ) { 818 818 /** 819 * Filter the category feed link.819 * Filters the category feed link. 820 820 * 821 821 * @since 1.5.1 … … 827 827 } elseif ( 'post_tag' == $taxonomy ) { 828 828 /** 829 * Filter the post tag feed link.829 * Filters the post tag feed link. 830 830 * 831 831 * @since 2.3.0 … … 837 837 } else { 838 838 /** 839 * Filter the feed link for a taxonomy other than 'category' or 'post_tag'.839 * Filters the feed link for a taxonomy other than 'category' or 'post_tag'. 840 840 * 841 841 * @since 3.0.0 … … 875 875 function get_edit_tag_link( $tag_id, $taxonomy = 'post_tag' ) { 876 876 /** 877 * Filter the edit link for a tag (or term in another taxonomy).877 * Filters the edit link for a tag (or term in another taxonomy). 878 878 * 879 879 * @since 2.7.0 … … 1398 1398 1399 1399 /** 1400 * Filter the comment edit link.1400 * Filters the comment edit link. 1401 1401 * 1402 1402 * @since 2.3.0 … … 1458 1458 1459 1459 /** 1460 * Filter the bookmark edit link.1460 * Filters the bookmark edit link. 1461 1461 * 1462 1462 * @since 2.7.0 … … 1526 1526 1527 1527 /** 1528 * Filter the user edit link.1528 * Filters the user edit link. 1529 1529 * 1530 1530 * @since 3.5.0 … … 2214 2214 if ( !is_single() && ( $nextpage <= $max_page ) ) { 2215 2215 /** 2216 * Filter the anchor tag attributes for the next posts page link.2216 * Filters the anchor tag attributes for the next posts page link. 2217 2217 * 2218 2218 * @since 2.7.0 … … 2297 2297 if ( !is_single() && $paged > 1 ) { 2298 2298 /** 2299 * Filter the anchor tag attributes for the previous posts page link.2299 * Filters the anchor tag attributes for the previous posts page link. 2300 2300 * 2301 2301 * @since 2.7.0 … … 2731 2731 2732 2732 /** 2733 * Filter the anchor tag attributes for the previous comments page link.2733 * Filters the anchor tag attributes for the previous comments page link. 2734 2734 * 2735 2735 * @since 2.7.0 … … 3901 3901 } elseif ( $id_or_email instanceof WP_Comment ) { 3902 3902 /** 3903 * Filter the list of allowed comment types for retrieving avatars.3903 * Filters the list of allowed comment types for retrieving avatars. 3904 3904 * 3905 3905 * @since 3.0.0
Note: See TracChangeset
for help on using the changeset viewer.