Remove unnecessary and out-of-place Twenty Ten filter. Also, tabs not spaces. see #13198.
git-svn-id: http://svn.automattic.com/wordpress/trunk@14688 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2f7f75511b
commit
61725ced93
|
@ -17,10 +17,9 @@
|
|||
printf( __( 'Category Archives: %s', 'twentyten' ), '<span>' . single_cat_title( '', false ) . '</span>' );
|
||||
?></h1>
|
||||
<?php
|
||||
$categorydesc = category_description();
|
||||
if ( ! empty( $categorydesc ) ) {
|
||||
echo apply_filters( 'archive_meta', '<div class="archive-meta">' . $categorydesc . '</div>' );
|
||||
}
|
||||
$category_description = category_description();
|
||||
if ( ! empty( $category_description ) )
|
||||
echo '<div class="archive-meta">' . $categorydesc . '</div>';
|
||||
?>
|
||||
|
||||
<?php
|
||||
|
|
Loading…
Reference in New Issue