Skip to content

Instantly share code, notes, and snippets.

@abelsaad
Created July 6, 2021 07:21
Show Gist options
  • Save abelsaad/98145dc20340bd5f51d3767fd1a89074 to your computer and use it in GitHub Desktop.
Save abelsaad/98145dc20340bd5f51d3767fd1a89074 to your computer and use it in GitHub Desktop.
View the latest posted topics
<?php
$the_query = new WP_Query( 'showposts=2' );
while ($the_query -> have_posts()) : $the_query -> the_post();
$thumb_id = get_post_thumbnail_id();
$thumb_url = wp_get_attachment_image_src($thumb_id, true);
?>
<li>
<a href="<?php the_permalink() ?>">
<img src="<?php echo $thumb_url[0]; ?>" />
<span><?php the_title(); ?></span>
<time><?php the_time('l, F j, Y'); ?></time>
</a>
</li>
<?php endwhile;?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment