Don't Display Author Box
-
I have created a single-badges.php in my theme, and it looks like the following, but I don’t see how to hide the author information when displaying a single badge. The authors of the badges are irrelevant in my system so I don’t want the author box displayed. Do you know how I can hide that?
<?php /** * Single Badge Template * */ get_header(); ?> <!-- #content Starts --> <?php woo_content_before(); ?> <div id="content" class="col-full"> <div id="main-sidebar-container"> <!-- #main Starts --> <?php woo_main_before(); ?> <section id="main"> <?php woo_loop_before(); if (have_posts()) { $count = 0; while (have_posts()) { the_post(); $count++; woo_get_template_part( 'content', get_post_type() ); // Get the post content template file, contextually. } } woo_loop_after(); ?> </section><!-- /#main --> <?php woo_main_after(); ?> <?php get_sidebar(); ?> </div><!-- /#main-sidebar-container --> <?php get_sidebar('alt'); ?> </div><!-- /#content --> <?php woo_content_after(); ?> <?php get_footer(); ?>
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Don't Display Author Box’ is closed to new replies.