From bba762d76c0bca627b6be11f2c82675edcba90b1 Mon Sep 17 00:00:00 2001 From: lancewillett Date: Fri, 13 Jul 2012 00:36:27 +0000 Subject: [PATCH] Twenty Twelve: remove tag_description and category_description filters from archive template in favor of core filters. Fixes #21230. git-svn-id: http://core.svn.wordpress.org/trunk@21268 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentytwelve/archive.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-content/themes/twentytwelve/archive.php b/wp-content/themes/twentytwelve/archive.php index 2bf1d2d2c0..eb797373a1 100644 --- a/wp-content/themes/twentytwelve/archive.php +++ b/wp-content/themes/twentytwelve/archive.php @@ -30,13 +30,13 @@ get_header(); ?> // Show an optional tag description $tag_description = tag_description(); if ( $tag_description ) - echo apply_filters( 'tag_archive_meta', '
' . $tag_description . '
' ); + echo '
' . $tag_description . '
'; } elseif ( is_category() ) { printf( __( 'Category Archives: %s', 'twentytwelve' ), '' . single_cat_title( '', false ) . '' ); // Show an optional category description $category_description = category_description(); if ( $category_description ) - echo apply_filters( 'category_archive_meta', '
' . $category_description . '
' ); + echo '
' . $category_description . '
'; } else { _e( 'Blog Archives', 'twentytwelve' ); }