Getting page/category content to show up in my custom page template
If I understood correctly you need to show a specific category index on a page template, right? If that’s the case you can use WP_Query: <?php /* Template Name: My Page Template */ ?> <?php get_header(); ?> <!– If you want to retrieve the page title, content, … –> <?php the_post(); // set up the … Read more