Thank you the thumbnail Generator tip that worked great. However the girl I am helping with would prefer that no images show up. I have set the thumbnail to 0 an 0 but it still shows for the posts that have a featured image. Is there a way to get images to not show up or can you tell me where to modify the code to not display it?
If figure I need to do some editing to tt-post-viewer/ttpv-shortcodes/ttpv-mostpopular-shortcode.php
if(strtolower($disp) == "thumbnail"){
$output_str .= "<div class='shortcode-thumb'>";
if(has_post_thumbnail()){
$src = wp_get_attachment_image_src( get_post_thumbnail_id($mostpopular_posts->ID),
'postarea-thumb', false, '' );
$output_str .= "<a href='#'><img src='".$src[0]."' /></a>";
}else{
$output_str .= "<a href='" . get_permalink() . "'>";
$output_str .= "<img src='". plugins_url( 'tt-post-viewer/images/default-image.png') . "' "
. "width='". $opt_val['ttpv_txt_postarea_thumbnail_width_number'] ."'"
. "height='". $opt_val['ttpv_txt_postarea_thumbnail_height_number'] ."' /></a>";
}
However it says that file is inactive at the top so I am not sure