Changeset 52959
- Timestamp:
- 03/20/2022 03:03:39 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/link-template.php
r52553 r52959 905 905 * @since 2.5.0 906 906 * 907 * @param int|WP_Term|object $cat The ID or termobject whose feed link will be retrieved.907 * @param int|WP_Term|object $cat The ID or category object whose feed link will be retrieved. 908 908 * @param string $feed Optional. Feed type. Possible values include 'rss2', 'atom'. 909 909 * Default is the value of get_default_feed(). 910 * @return string Link to the feed for the category specified by $cat_id.910 * @return string Link to the feed for the category specified by `$cat`. 911 911 */ 912 912 function get_category_feed_link( $cat, $feed = '' ) { … … 926 926 * @param string $feed Optional. Feed type. Possible values include 'rss2', 'atom'. 927 927 * Default is the value of get_default_feed(). 928 * @return string|false Link to the feed for the term specified by $term_id and $taxonomy.928 * @return string|false Link to the feed for the term specified by `$term` and `$taxonomy`. 929 929 */ 930 930 function get_term_feed_link( $term, $taxonomy = '', $feed = '' ) {
Note: See TracChangeset
for help on using the changeset viewer.