List wordpress posts by category which match page title
问题 I'm trying to list posts in the category which shares the name of the page. I.e. If you are on the "Services" page it should display posts in the category "Services". I realize it is easy to do with conditionals such as: <?php if ( (is_page('Groups')) ) { query_posts('category_name=groups'); while (have_posts()) { the_post();?> <h2 class="title" id="sub">Upcoming Group Programs</h2> <a href="<?php the_permalink() ?>"> <div class="post" id="post-<?php the_ID(); ?>"> <h2><?php the_title(); ?><