StudioPress Community Forums
  StudioPress Community Forums > Forums > General Discussion
For help and support, access to your downloads, or to manage your account please log into My StudioPress.

These forums have been set to read-only so you can browse the existing topics for any questions you may have.

For general discussion on WordPress, CSS and design (NOT for support) visit the new Community Forums.
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 02-16-2010, 11:13 AM
arodriguez arodriguez is offline
Registered User
Genesis Member
 
Join Date: Jan 2010
Posts: 21
Default Most popular post

Hi,

I am trying to make a box for the most popular post (it needs to have thumbnail) and this code works ok when when is display on the home page, but in other pages it displays the whole content of the five post I try using the php function substr() but it did not work. I know there are plugins but I need to display a thumb nail, that is the reason I am creating my own code.

Here is the code:

PHP Code:
<?php $popular = new WP_Query("showposts=5&orderby=comment_count&order=DESC"); 

while(
$popular->have_posts()) : $popular->the_post();?> 
                <?php if( get_post_meta($post->ID"thumb"true) ): ?> 
                <a href="<?php the_permalink() ?>" rel="bookmark"><img class="thumb" src="<?php bloginfo('template_directory'); ?>/tools/timthumb.php?src=<?php echo get_post_meta($post->ID"thumb"$single true); ?>&amp;h=<?php echo get_theme_mod('featured_top_left_thumb_height'); ?>&amp;w=<?php echo get_theme_mod('featured_top_left_thumb_width'); ?>&amp;zc=1" alt="<?php the_title(); ?>" /></a>     
                <?php else: ?> 
                <?php endif; ?>                     
                 
                <strong><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></strong> 
                <?
                    the_content_limit
(80"");
                
?> 
                 
                <hr/> 
                 
                <?php endwhile; ?>
 

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Most Popular, Most Commented, Most Viewed box NichesZ General Discussion 3 05-01-2009 07:13 AM
Recent Post, Popular Post, Similar Post are disabled? colin General Discussion 1 04-14-2009 03:11 PM
most popular list togitron General Discussion 1 12-30-2008 09:43 AM
Popular content kaneco General Discussion 2 11-02-2008 09:15 PM


All times are GMT -5. The time now is 11:47 PM.

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.