Miniatura de imagens não aparecem
-
Ola amigos, tudo bem?
Tenho um blog wordpress (afiliados-na-web.com) e não consigo fazer aparecer as miniaturas de imagens dos posts na pagina principal.
Abaixo o trecho que código presente no arquivo functions.php
function thumbnail_post() { global $post; $thumb = get_post_thumbnail_id(); $thumb_width = 200; $thumb_height = 200; $image = vt_resize( $thumb, '', $thumb_width, $thumb_height, true ); $alt_thumb = get_the_title($post->post_parent); $template_url = get_bloginfo('template_url'); if ($thumb) { echo '<img class="float-left" src="'.$image['url'].'" alt="'.$alt_thumb.'" width="'.$thumb_width.'" height="'.$thumb_height.'" />'; } else { echo '<img class="thumb-image float-left" src="'.$template_url.'/images/thumb.jpg" alt="'.$alt_thumb.'" width="'.$thumb_width.'" height="'.$thumb_height.'" />'; } }
e aqui o trecho onde chamo a função:
<article class="post-box group" id="post-<?php the_ID(); ?>"> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php thumbnail_post(); ?></a> <h2 id="title-post"><a class="post-title-name" href="<?php the_permalink(); ?>" title="Ver Artigo: <?php the_title(); ?>"><?php the_title(); ?></a></h2> <span class="entry-info">Publicado em: <?php the_time('d \d\e F \d\e Y'); ?> | Por: <?php the_author();?><?php edit_post_link('Editar Artigo',' | ',''); ?></span>
alguem pode me ajudar?
Obs: Já defini em todos os posts a featured image.
Um abraço
Adriano Luz
Visualizando 5 respostas - 1 até 5 (de um total de 5)
Visualizando 5 respostas - 1 até 5 (de um total de 5)
- O tópico ‘Miniatura de imagens não aparecem’ está fechado para novas respostas.