I’m trying to insert some text under the heading of each menu page. Right now I have this in taxonomy-menus.php:
<?php get_header(); ?>
<!-- begin main -->
<section class="main menulist block grid4 ">
<header>
<h2 class="post-title">
<?php single_cat_title(); ?></h2>
<p class="note">
<?php if ( is_archive() ) {echo'Your choice of bread - White, Wheat, or Marble Rye!<br>Pick a potato chip - Regular, Jalapeno, BBQ or Salt & Vinegar! ';} ?></p>
</header>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php include 'part.menuitem.php'; ?>
<?php endwhile; ?>
<!-- end .post -->
<?php else: ?>
No entries.
<?php endif;?>
</section>
<!-- end main -->
<?php get_footer(); ?>
How would I go about customizing this for each menu page (ie – Sandwiches, Appetizers, Drinks, etc.)?