Advertisement
bastetmilo

Untitled

Nov 6th, 2015
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="content" class="clearfix">
  4. <div class="wrapper-outer content-wrapper-page">
  5.  
  6. <!-- BEGIN FEATURED IMAGE -->
  7. <div class="featured-image">
  8. <a href="<?php the_permalink(); ?>">
  9. <?php the_post_thumbnail(); ?>
  10. </a>
  11. </div>
  12. <!-- END FEATURED IMAGE -->
  13.  
  14. <!-- BEGIN CUSTOM FIELD FOR EMBEDDABLE CONTENT -->
  15. <?php $featuredembed = get_post_meta($post->ID, 'FeaturedEmbed', true); ?>
  16. <div class="video-container"><?php echo $featuredembed; ?></div>
  17. <!-- END CUSTOM FIELD FOR EMBEDDABLE CONTENT -->
  18.  
  19. <!-- BEGIN SHORTCODE OUTSIDE THE LOOP -->
  20. <div class="post-shortcode">
  21. <?php $shortcode = get_post_meta($post->ID, 'Shortcode', true); ?><?php echo do_shortcode($shortcode); ?>
  22. </div>
  23. <!-- END SHORTCODE OUTSIDE THE LOOP -->
  24. <?php while ( have_posts() ) : the_post(); ?>
  25.  
  26. <div id="page-title">
  27. <h1 class="entry-title"><?php the_title(); ?></h1>
  28. </div>
  29. <div class="page-wrapper">
  30.  
  31.  
  32.  
  33. <!-- BEGIN PAGE TITLE -->
  34.  
  35. <!-- END PAGE TITLE -->
  36.  
  37. <!-- BEGIN PAGE CONTENT -->
  38. <div class="entry-content"><?php the_content(); ?></div>
  39. <!-- END PAGE CONTENT -->
  40.  
  41. <!-- BEGIN POST NAVIGATION -->
  42. <div class="link-pages">
  43. <?php wp_link_pages(array('before' => '<p><strong>'.__('Pages:', 'bonfire').'</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
  44. </div>
  45. <!-- END POST NAVIGATION -->
  46.  
  47. <!-- BEGIN EDIT POST LINK -->
  48. <?php edit_post_link(__('EDIT', 'bonfire')); ?>
  49. <!-- END EDIT POST LINK -->
  50.  
  51. <?php endwhile; ?>
  52.  
  53. </div>
  54. <!-- /.page-wrapper -->
  55.  
  56. </div>
  57. <!-- /.wrapper-outer -->
  58. </div>
  59. <!-- /#content -->
  60.  
  61. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement