UFFF! Que pena con ustedes...
Creo q mejor les paso todo el código xD
Este es el Orbit original:
Código HTML:
Ver original <img src="overflow.jpg" alt="Overflow: Hidden No More" /> <img src="captions.jpg" alt="HTML Captions" [COLOR="Red"]data-caption="#htmlCaption"[/COLOR] /> <img src="features.jpg" alt="and more features" /> <!-- Captions for Orbit -->
<span class="orbit-caption" [COLOR="Red"]id="htmlCaption"[/COLOR]>I'm A Badass Caption
</span>
----------------------------------------
Revisando caí en cuenta y NO es el atributo id sino:
Código HTML:
Ver originaldata-caption="#Aquí si el id del post"
(Anteponiéndole el signo numeral dentro de comillas...)
Ejemplo:
Código HTML:
Ver originaldata-caption="#[COLOR="Red"]Aquí si el id del post[/COLOR]"
Y este es orbit.php que estoy "tratando" de implementar en wordpress; "jala" las thumbnails pero los captions(descripciones) :S aun no:
Además...
Como pueden observar en <!-- Captions for Orbit --> dice id="<?php the_ID(); ?>" y efectivament coloca el id del post... pero necesito q la thumbnail tambn lleve el mismo id... y para remate anteponerle el signo # ¿Complicado eh?
Código PHP:
Ver original<div id="featured">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail(); // Esta es la parte q falta...
}
?>
<!-- Captions for Orbit -->
<span class="orbit-caption" id="<?php the_ID(); ?>" style="color:#F00;">
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
<?php include (TEMPLATEPATH . '/inc/meta.php' ); ?>
<?php the_excerpt(); ?>
</span>
<?php endwhile;?>
<?php else :?>
<?php endif;?>
<script type="text/javascript">
$(window).load(function() {
$('#featured').orbit({
bullets: true,
captions: true,
captionAnimation: 'fade',
captionAnimationSpeed: 800,
});
});
</script>
</div>