Ok, I have a wordpress theme which has the following files comments.php footer.php functions.php header.php index.php sidebar.php style.php Ok, the post and category posts view is in the same "page" like if i want to click a category and only see the titles of the post i cant do that because if i take out the "the content" it will also take it out from the posts view and just leave the damn title.. so what i basically need is you to create a seperate posts.php page for it and integrate it into the theme. Please only PM me only if your sure that you can do this and you actually know how to make wordpress themes and edit them properly
Maybe you should try and explain again in more detail / more precisely what you need. I am English, and great at wordpress coding... but I have no idea what you mean... so if you are looking for a cheap programmer that maybe doesnt have as good a grasp of english you will need to reclarify.
only 7$ not can do anymore, please upto 25$ and i will do it for you, i can design: one of my design attmp3.com
Okay, When you click a category I want only the titles of the posts to show. Problem: The when I take out "the content" it removes it from the post it self so when you click the post it self it only shows the title and not the content.. So what I need now is someone to integrate into my theme to only view the titles in the archives and category view and not the content but view the content PER single post... Does that clarify it?
I copied some code used in the "archive.php" of one of my WP sites and modified it for your purpose. Try wrapping your current content code like so: <?php if (is_category()) { ?> <h2 class="pagetitle">Archive for the '<?php echo single_cat_title(); ?>' Category</h2> <h3 class="post-title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3> <?php } else { ?> // CURRENT CONTENT CODE <?php } ?> Code (markup): Note: Your current content code must be contained within its own set of PHP tags like so: <?php CURRENT CONTENT CODE ?> You may also edit the text in above to suit.