View Single Post
05-10-2012, 08:32 AM
#3
4Templates is offline 4Templates
4Templates's Avatar
Status: I'm new around here
Join date: May 2012
Location: Brentwood, TN
Expertise: Design, Photography, Wordpress
Software: Photoshop, Notepad++
 
Posts: 5
iTrader: 0 / 0%
 

4Templates is on a distinguished road

Send a message via ICQ to 4Templates Send a message via AIM to 4Templates Send a message via Yahoo to 4Templates

  Old

Try that in the thumbnail file

PHP Code:
<div class="thumbnail-wrap">

    <?php 
    
        
if ( has_post_thumbnail() ) { 
        
            echo 
'<img src="';
            
            
wptouch_the_post_thumbnail();
            
            echo 
'" class="attachment-post-thumbnail" alt="post-thumbnail" />';
        
        } else { 
    
            
$portfolio_full get_post_meta($post->ID'portfolio_full_img'true); 
            
$post_image get_post_meta($post->ID'post_image'true); 
            
$disable_post_image get_post_meta($post->ID'disable_post_image'true);
    
            echo 
'<img src="' $portfolio_full '" class="attachment-post-thumbnail default-thumbnail" alt="post-thumbnail" />';
   
        }
        
    
?>
   
</div>