Hi I need some one to help with my site. I need my catagory page to link to a page to all catagories. For example in my header I have a menu called our collection. That links to a page full of POSTS in the our collection catagory. But I would like to click our collection, which then goes to a page which shows all of my catagroies, such as rings, charms or the like. Then when you click on rings or charms it will then show all posts in that catagory. I hope that makes sense, willing to pay!
Hi St3vo, It needed custom coding.. Could you please give me your site url please? Then I can check it.. Thanks
Try out this plugin. It also provides the page template so you don't need to mess up with code: http://wordpress.org/extend/plugins/a-to-z-category-listing/
To accomplish this without a plugin you'll need to create a new template page and use a WordPress function to list all the categories. To create a template, create a blank .php file and add this to the top: /** * Template Name: Categories list */ Code (markup): Now , WordPress will recognise this as a template. Copy archive.php structure or any other page to include header, sidebar and footer and to display a list of your categories you need to use a function. In this case : wp_list_categories()will do the job. This is only a start. You can customize page look with some css and any way you like. To apply this template to a page-> Create a new page and choose from the right select to use this template for that page. In this case will be the template name: "Categories list".