Tip: Click lines to highlight, hold ctrl/cmd to multi-select

http://codedumper.com/aqate (17-May @ 23:14)

mrgenixus

Syntax Highlighted Code

  1. <?php if(is_front_page() and is_page()):
  2. $thisPage = $post
  3. ?>
  4. <h2>Recent Posts</h2>
  5. <ul>
  6. <?php foreach(wp_get_recent_posts('numberposts=5') as $post):
  7. setup_postdata($post); ?>
  8. <li><a href="' .  . '" title="Look ' <?php the_title_attribute(); ?>'" > <?php the_title(); ?></a> </li>
  9. <?php endforeach; ?>
  10. </ul>
  11. <?php endif; ?>

Plain Code

<?php if(is_front_page() and is_page()): 
$thisPage = $post
?>
<h2>Recent Posts</h2>
<ul>
<?php foreach(wp_get_recent_posts('numberposts=5') as $post): 
setup_postdata($post); ?>
<li><a href="' .  . '" title="Look ' <?php the_title_attribute(); ?>'" > <?php the_title(); ?></a> </li>
<?php endforeach; ?>
</ul>
<?php endif; ?>

Permalink: http://codedumper.com/aqate