Cita:
Iniciado por Nekko Buscá en la plantilla single.php si tenés en algún lado la función the_post_thumbnail
Hola,
No lo veo por ningún lado,
En single.php tengo esto:
Código PHP:
Ver original<?php get_header(); ?>
<div id="main_body_wrap">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div id="main_body">
<div id="page_intro">
<h1><?php the_title(); ?></h1>
<div id="page_description"><?php echo get_meta_option('page_description'); ?></div>
</div>
<div id="main_content">
<div id="primary">
<?php get_template_part( 'content', get_post_format() ); ?>
</div>
<div id="secondary">
<?php tf_get_sidebar(); ?>
</div>
</div>
<div class="clearboth"></div>
<p><?php edit_post_link(__( 'Edit this Post', 'nevo' ),'',''); ?></p>
<?php if(get_theme_option('about_author')==1) tf_about_the_author(); ?>
<?php comments_template( '', true ); ?>
<?php get_footer(); ?>
</div>
<?php endwhile; ?>
</div>
y en single-portfolio.php tengo esto:
Código PHP:
Ver original<?php get_header(); ?>
<div id="open_btn"></div>
<div id="main_body_wrap">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div id="main_body">
<div id="page_intro">
<h1><?php the_title(); ?></h1>
<div id="page_description"><?php echo get_meta_option('page_description'); ?></div>
</div>
<?php $layout=get_meta_option('display_sidebar'); ?>
<div id="main_content">
<?php if($layout==1): ?>
<div id="primary">
<?php endif; ?>
<?php get_template_part( 'content' ); ?>
<?php if($layout==1): ?>
</div>
<div id="secondary">
<?php tf_get_sidebar(); ?>
</div>
<?php endif; ?>
</div>
<div class="clearboth"></div>
<p><?php edit_post_link(__( 'Edit this Post', 'nevo' ),'',''); ?></p>
<?php get_footer(); ?>
</div>
<?php endwhile; ?>
</div>