Viewing 6 replies - 1 through 6 (of 6 total)
  • check and edit the section in loop.php – possibly something with the_excerpt()

    Are they the tags? Look for the_tags in the template and comment it out.

    <?php /* the_tags('Tags: ', ', ', '<br />'); */ ?>

    Thread Starter Muazam

    (@muazam)

    couldn’t find it there.

    Copy-paste the contents of whatever template file is generating that page into a Pastebin so people can take a look. (For example, category.php or index.php, etc.)

    Also if possible, provide a link to the page.

    Thread Starter Muazam

    (@muazam)

    <?php
    /**
     * The template for displaying Category Archive pages.
     *
     * @package WordPress
     * @subpackage Twenty_Ten
     * @since Twenty Ten 1.0
     */
    
    get_header(); ?>
    
    		<div id="container">
    			<div id="content" role="main">
    
    				<h1 class="page-title"><?php
    					printf( __( '%s', 'twentyten' ), '<span>' . single_cat_title( '', false ) . '</span>' );
    				?></h1>
    				<?php
    					$category_description = category_description();
    					if ( ! empty( $category_description ) )
    						echo '<div class="archive-meta">' . $category_description . '</div>';
    
    				/* Run the loop for the category page to output the posts.
    				 * If you want to overload this in a child theme then include a file
    				 * called loop-category.php and that will be used instead.
    				 */
    				get_template_part( 'loop', 'category' );
    				?>
    
    			</div><!-- #content -->
    		</div><!-- #container -->
    
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    This is my category.php

    And site : https://www.atbleach.com/

    Thank you!

    Is this an example of the text you’re trying to get rid of?

    Mirror 1 Mirror 2 Mirror 3 Mirror 4 Mirror 1 Mirror 2 Mirror 3 Mirror 4 jQuery(document).ready(function() { if(postTabs_getCookie(‘postTabs_408′)) postTabs_show(postTabs_getCookie(‘postTabs_408′),408); });

    …on this page – https://www.atbleach.com/category/bleach-subbed/

    That looks like your tabs code is malfunctioning.

    Look for a file called loop-category.php – and if you can’t figure out what to remove or comment out below the date line, please paste it in a pastebin (don’t paste it here, please) so folks can take it look.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Category showing unwanted text’ is closed to new replies.