I would like to show the full post of every article in the blog, whether an archive, category or single post.
I looked at help but am missing something, I don't know which .php file to edit and how.
My index.php file only has these lines: ( WP 1.5 )
<?php
/* Short and sweet */
define('WP_USE_THEMES', true);
require('./wp-blog-header.php');
?>
Please advise. Thanks.
That's K2 isn't it? You need to check with the forums for K2, at http://www.flickr.com/groups/binarybonsai
Keep in mind all templates for a theme are found in that theme's subdirectory under wp-content/themes/. Any changes for layout and whatnot need to be made to those files.
miklb, that's the standard root index.php for any WordPress installation, it is not necessarily K2.
danv, go to your Presentation tab, then Theme Editor sub-tab. Look in your theme's template files for instances of "the_excerpt" and replace those with "the_content".
More info:
http://codex.wordpress.org/Template_Tags/the_excerpt
http://codex.wordpress.org/Template_Tags/the_content
My apologies. I totally glanced over the OP. He was posting the main index.php, not his themes, and I was seeing what I thought was the include loop from the K2 theme.
Again, I apologize for the hasty response.