Guest User

Untitled

a guest
Jan 12th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <?php
  2. $query = new WP_Query( 'page_id=123' );
  3. echo '<h1 class="siteheading"> <a href="<?php the_permalink(); ?>"> <?php the_title(); ?></a></h1>';
  4.  
  5. $headline = get_post_meta($post->ID, "_headline", true);
  6. if($headline != "") $headline = '<h2>'.$headline.'</h2>';
  7. echo '<div class="center">';
  8. if($headline != "") echo '$headline';
  9. echo '</div>';
  10.  
  11. echo '<?php the_content();?>';
  12. ?>
Add Comment
Please, Sign In to add comment