Advertisement
Guest User

Custom Page Title Removal - CMS Theme

a guest
Aug 22nd, 2013
520
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <div class="<?php wptouch_post_classes(); ?>">
  2. <?php if ( has_cms_homepage_message() && is_front_page() ) { ?>
  3. <div class="front-message">
  4. <?php cms_homepage_message(); ?>
  5. </div>
  6. <?php } else { ?>
  7.  
  8. <!-- TESTING IF THE HOME PAGE IS DISPLAYED -->
  9. <?php if( !is_front_page() ) : ?>
  10. <div class="post-head-area">
  11. <h2 class="post-title heading-font"><?php the_title(); ?></h2>
  12. </div>
  13. <?php endif;?>
  14. <!-- END HOME PAGE CONDITION TEST -->
  15.  
  16. <?php wptouch_the_content() ; ?>
  17. <?php } ?>
  18. </div><!-- post classes -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement