Hello,
When you are editing posts, on the right column you should have additional params metabox - here you can specify which elements should be visible (author, category etc.).
If you want to disable this kind of information globally - for all posts, let me know I'll point you which file you'll have to edit.
You can also disable globally all meta informations (data, author, category, comments) in Template Options -> Basic tab -> "Post sidebar informations" option.
Read more from the category view you can remove by changing this fragment from GameNews/content.php file:
- Code: Select all
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', GKTPLNAME ) ); ?>
into:
- Code: Select all
<?php the_content(); ?>
or
- Code: Select all
<?php gk_the_excerpt(); ?>