Hi,
Am a WP beginner. When I create a post, every post has a footer at the bottom that say
Filed under Category by admin
is it possible to remove this whole line somehow so that all posts show up without this 'Filed under Category by admin'?
Hi,
Am a WP beginner. When I create a post, every post has a footer at the bottom that say
Filed under Category by admin
is it possible to remove this whole line somehow so that all posts show up without this 'Filed under Category by admin'?
Look in your template files and delete whatever parts you don't like.
Depending on the template you're using, the line you want will probably be in the index.php file, although it may be repeated in other files for different situations (e.g. viewing archives, viewing a single post, etc).
You'll probably find that in your theme's index.php file.
In line 17 of the wp-content/themes/default/index.php there is a similar line:
<p class="postmetadata">Posted in <?php the_category(', ') ?>...
This topic has been closed to new replies.