Hi, I would like to make the category and page titles of my wordpress blog different. So for example if you click the "investing" category the resulting page would have the title "how to invest" rather than "investing". Does anyone know how to do this? I have tried using the all-in-one seo plugin but that only seems to work for pages with one post. I'm referring to a page with multiple posts. Let me know if you don't understand my question
Yeah, you could use the category description instead. Open archive.php and look for something like this near the top: <?php /* If this is a category archive */ if (is_category()) { ?> <h2 class="pagetitle">Archive for the ‘<?php single_cat_title(); ?>’ Category</h2> Code (markup): Replace <?php single_cat_title(); ?> with <?php echo category_description(); ?>