22/01/2010, 18:14
|
| | Fecha de Ingreso: abril-2009
Mensajes: 201
Antigüedad: 15 años, 7 meses Puntos: 4 | |
Respuesta: como saber el campo personalizado en wordpress Cita: <!--Begin Feaured Article-->
<div style="position: relative;">
<div class="prev"></div>
<div class="next"></div>
</div>
<div id="sections">
<ul>
<?php $my_query = new WP_Query("category_name=Featured Articles&showposts=3");
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<li class="thumbnail-div-featured" style="background-image: url(<?php bloginfo('stylesheet_directory'); ?>/timthumb.php?src=<?php echo get_post_meta($post->ID, "image_value", true); ?>&h=253&w=619&zc=1&q=50);">
<div class="featured-inside">
<span class="post-info">Posted by <?php the_author() ?> on <?php the_time('m jS, Y') ?> | <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></span>
<a href="<?php the_permalink() ?>" rel="bookmark" class="titles-featured" title="Permanent Link to <?php the_title(); ?>"><?php the_title2('', '...', true, '36') ?></a>
<?php the_content_limit(200, ""); ?>
</div>
</li>
<?php endwhile; ?>
</ul>
</div>
<!--End Feaured Article-->
ese es el codigo de donde va el Slide |