Guest User

Untitled

a guest
Jan 2nd, 2017
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. <!-- Page Title Section -->
  2. <div class="page-title-section">
  3. <div class="overlay">
  4. <div class="container">
  5. <div class="row">
  6. <div class="col-md-6">
  7. <div class="page-title">
  8. <?php
  9. if( is_archive() ){
  10.  
  11. echo '<h1 class="page-title">';single_cat_title();echo '</h1>';
  12.  
  13. }
  14. else if( is_home() ){
  15.  
  16. echo '<h1>';
  17.  
  18. wp_title(' ');
  19.  
  20. echo '</h1>';
  21. }
  22. else{
  23.  
  24. the_title( '<h1>', '</h1>' );
  25. }
  26. ?>
  27. </div>
  28. </div>
  29. <div class="col-md-6">
  30. <ul class="page-breadcrumb">
  31. <?php if (function_exists('qt_custom_breadcrumbs')) qt_custom_breadcrumbs();?>
  32. </ul>
  33. </div>
  34. </div>
  35. </div>
  36. </div>
  37. </div>
  38. <!-- /Page Title Section -->
  39. <div class="clearfix"></div>
Add Comment
Please, Sign In to add comment