Guest User

Untitled

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