Skip to content

Instantly share code, notes, and snippets.

@40
Created May 29, 2012 05:01
Show Gist options
  • Save 40/2822646 to your computer and use it in GitHub Desktop.
Save 40/2822646 to your computer and use it in GitHub Desktop.
get full content of last blog others just the title
<?php
$args = array( 'numberposts' => '1' );
$recent_posts = wp_get_recent_posts( $args );
foreach( $recent_posts as $recent ){
echo '<li><a href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'" >' . $recent["post_title"].'</a> </li> ';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment