From 367fdfe7f32f8a819321fbd2ec6be4c74e0310fc Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Fri, 4 Sep 2009 08:47:36 +0000 Subject: [PATCH] Add a the_terms filter, and use a default ", " sep. props scribu. fixes #10600 git-svn-id: https://develop.svn.wordpress.org/trunk@11900 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/category-template.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/wp-includes/category-template.php b/wp-includes/category-template.php index 5ab23960b2..344ae4708d 100644 --- a/wp-includes/category-template.php +++ b/wp-includes/category-template.php @@ -925,12 +925,13 @@ function get_the_term_list( $id = 0, $taxonomy, $before = '', $sep = '', $after * @param string $after Optional. After list. * @return null|bool False on WordPress error. Returns null when displaying. */ -function the_terms( $id, $taxonomy, $before = '', $sep = '', $after = '' ) { - $return = get_the_term_list( $id, $taxonomy, $before, $sep, $after ); - if ( is_wp_error( $return ) ) +function the_terms( $id, $taxonomy, $before = '', $sep = ', ', $after = '' ) { + $term_list = get_the_term_list( $id, $taxonomy, $before, $sep, $after ); + + if ( is_wp_error( $term_list ) ) return false; - else - echo $return; + + echo apply_filters('the_terms', $term_list, $taxonomy, $before, $sep, $after); } /**