Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

angus

[Resolvido] Tumbnail

Recommended Posts

Estou configurando minha pagina category para exibir imagens miniaturas e a single.php para exibir imagens maiores... ate ai tudo bem!

 

Quando vou para página single.php aparecem 2 imagens a miniatura e a maior imagem, gostaria que fosse so 1 imagem(Tamanho Maior) o que acontece no meu codigo?

 

Para vocês entenderem melhor é assim: na category.php eu quero que apareceça só miniaturas e na single.php a mesma imagem so que apliada. miniatura no tamanho:150x100px e a imagem grande na single.php 300x200px. Podem me ajudar?

 

obrigado!

 

function.php

<?php 

if(function_exists('register_sidebar'))

	register_nav_menu($location, $description);
	add_theme_support('post-formats', array('aside', 'gallery'));

	register_sidebar(array(
       'before_widget' => '',
       'after_widget' => '',
       'before_title' => '<div class="title">',
       'after_title' => '</div>',
   ));

?>

<?php 

// post thumbnail support
   if ( function_exists( 'add_image_size' ) ) add_theme_support( 'post-thumbnails' );

   if ( function_exists( 'add_image_size' ) ) {
   add_image_size( 'img1', 150, 100 );
   add_image_size( 'img2', 300, 200, true );
add_image_size( 'img3', 800, 533, true );
}

?>

 

 

 

single.php

 

	<?php if(have_posts()): while(have_posts()): the_post(); ?>
   <?php if ( has_post_thumbnail()) the_post_thumbnail('img2'); ?><h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
   <p><?php the_content();?></p>

   <?php endwhile; else: ?>
   <p>Nenhum post encontrato</p>
   <?php endif ?>

 

 

EXISTE UMA FORMA MELHOR DE CONFIGURAR ISSO?

 

duvida.png

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.