Changeset 29475
- Timestamp:
- 08/12/2014 11:47:23 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/category-template.php
r29467 r29475 1168 1168 * @param string $after Optional. After tags. 1169 1169 * @param int $id Optional. Post ID. Defaults to the current post. 1170 * @return string|bool|WP_Error A list of tags on success, false orWP_Error on failure.1170 * @return string|bool|WP_Error A list of tags on success, false if there are no terms, WP_Error on failure. 1171 1171 */ 1172 1172 function get_the_tag_list( $before = '', $sep = '', $after = '', $id = 0 ) { … … 1241 1241 * @param int|object $post Post ID or object. 1242 1242 * @param string $taxonomy Taxonomy name. 1243 * @return array|bool|WP_Error Array of term objects on success, false if there are no terms, WP_Error on failure. 1243 * @return array|bool|WP_Error Array of term objects on success, false if there are no terms 1244 * or the post does not exist, WP_Error on failure. 1244 1245 */ 1245 1246 function get_the_terms( $post, $taxonomy ) { … … 1280 1281 * @param string $sep Optional. Separate items using this. 1281 1282 * @param string $after Optional. After list. 1282 * @return string|bool|WP_Error A list of terms on success, false orWP_Error on failure.1283 * @return string|bool|WP_Error A list of terms on success, false if there are no terms, WP_Error on failure. 1283 1284 */ 1284 1285 function get_the_term_list( $id, $taxonomy, $before = '', $sep = '', $after = '' ) {
Note: See TracChangeset
for help on using the changeset viewer.