Last active
August 29, 2015 14:00
-
-
Save madeinnordeste/0abcde710b9b8c03c7b6 to your computer and use it in GitHub Desktop.
Wordpress : Popular Posts
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 $popular = new WP_Query('orderby=comment_count&posts_per_page=5'); ?> | |
<?php while ($popular->have_posts()) : $popular->the_post(); ?> | |
<?php | |
$justanimage = get_post_meta($post->ID, 'Image', true); | |
if ($justanimage) { | |
?> | |
<img src="<?php echo get_post_meta($post->ID, "Image", true); ?>" alt="<?php the_title(); ?>" /> | |
<?php } else { ?> | |
<img src="http://an-alternative-image.jpg" alt="" /> | |
<?php } ?> | |
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> | |
<?php endwhile; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment