Created
July 6, 2021 07:21
-
-
Save abelsaad/98145dc20340bd5f51d3767fd1a89074 to your computer and use it in GitHub Desktop.
View the latest posted topics
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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