Advertisement
centennialchristianc

Ray of Light single-page.php

Feb 6th, 2012
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.91 KB | None | 0 0
  1. <!-- BEGIN .content-wrapper -->
  2. <div class="content-wrapper">
  3.  
  4. <!-- BEGIN .content -->
  5. <div class="content">
  6.  
  7.  
  8. <!-- BEGIN .left-side -->
  9. <div class="left-side">
  10. <!-- BEGIN .article-wrapper -->
  11. <div class="article-wrapper">
  12. <!-- BEGIN .section-header -->
  13. <div class="section-header">
  14. <h2><?php the_title();?></h2>
  15. <h3>
  16. <?php
  17. global $post;
  18. $subtitle = get_post_meta($post->ID, "subtitle");
  19. echo $subtitle[0];
  20. ?>
  21. </h3>
  22. <!-- END .menu-primary-wrapper -->
  23. </div>
  24.  
  25. <!-- BEGIN .text -->
  26. <div class="text">
  27.  
  28. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  29. <?php remove_filter('the_content', 'big_first_char', 5); ?>
  30. <?php add_filter('the_content', 'wrap_img_tags'); ?>
  31. <?php the_content(); ?>
  32. <?php add_filter( 'the_content', 'wpautop' ); ?>
  33. <!-- END .text -->
  34. </div>
  35. <!-- END .article-wrapper -->
  36. </div>
  37. <!-- BEGIN .article-footer -->
  38. <div class="article-footer">
  39. <a href="<?php bloginfo("url");?>" class="btn-1 btn-align-left btn-previous"><i>&nbsp;</i><b><span><?php printf ( __( 'back to Homepage' , 'rayoflight' ));?></span></b><u>&nbsp;</u></a>
  40. <!-- END .article-footer -->
  41. </div>
  42.  
  43.  
  44.  
  45. <?php if ( comments_open() ) : ?>
  46. <!-- BEGIN .section-spacer -->
  47. <table class="section-spacer">
  48. <tr>
  49. <td class="left"></td>
  50. <td class="middle">
  51. <span><?php printf ( __( 'Comments' , 'rayoflight' ));?></span>
  52. </td>
  53. <td class="right"></td>
  54. </tr>
  55. <!-- END .section-spacer -->
  56. </table>
  57.  
  58. <!-- BEGIN .comments-wrapper -->
  59. <div class="comments-wrapper">
  60. <?php comments_template(); // Get wp-comments.php template ?>
  61. <!-- END .comments-wrapper -->
  62. </div>
  63. <?php endif; ?>
  64.  
  65. <?php endwhile; else: ?>
  66. <p><?php printf ( __('Sorry, no posts matched your criteria.' , 'rayoflight' )); ?></p>
  67. <?php endif; ?>
  68. <!-- END .left-side -->
  69. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement