Quisiera saber cómo puedo hacer para que en la index se cargue una img de la entrada, dejo el codigo:
El index llama a un archivo .php que es una porción de código, que es el siguiente:
Código PHP:
Ver original
<div class="fcontent-top"></div> <div class="fcontent"> <?php $featured_category1 = get_option('swt_featured_category1c'); $featured_number1 = '3'; ?> <?php if(($featured_category1 == "Choose a category:") || ($featured_number1 == '')) { ?> <?php { /* nothing */ } ?> <?php } else { ?> <h3> <?php echo $featured_category1; ?></h3> <?php //insert your category name $my_query = new WP_Query('category_name='. $featured_category1 . '&' . 'offset=' . '&' . 'showposts='. $featured_number1); while ($my_query->have_posts()) : $my_query->the_post(); $do_not_duplicate = $post->ID; $the_post_ids = get_the_ID(); $c++; // increment the counter if( $c % 3 != 0) { $extra_class = 'novedades'; } else { $extra_class = 'rightp'; } ?> <div class="fpostwrap <?php echo $extra_class; ?>"> <div class="fpost-top"></div> <div class="fpost"> <h4><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h4> <p><?php truncate_post(250,true); ?></p> <a class="more2" href="<?php the_permalink() ?>#more">Lee más</a> </div><!-- FEAT CAT ENTRY END --> <div class="fpost-bot"></div> </div> <?php if(++$counter % 3 == 0) : ?> <?php endif; ?> <?php endwhile;?> <?php } ?> </div><!-- FEATURED CATEGORY END --> <div class="fcontent-bot"></div>
Espero me puedan ayudar.
Gracias.!!!!!!