Home › Forums › Back End › Post subject under each page in wordpress › Reply To: Post subject under each page in wordpress
August 29, 2013 at 6:57 am
#148496
Participant
Senff not sneff
A couple of ways of doing that.
If the snippets are of a custum post type: create a page with permalink http://yoursite.com/snippets. Have this page use a custom template. In this template, code a query that lists all posts of type “snippets”. See http://wordpress.org/support/topic/show-all-posts-of-a-custom-post-type?replies=3 for more details
OR…
If the snippets are regular posts but in cagtegory “snippets”: the normal URL would be http://yoursite.com/category/snippets. Use .htaccess file to forward/redirect http://yoursite.com/snippets to http://yoursite.com/category/snippets
OR…