フッターのカスタム投稿タイプをターゲットにして、ワードプレスでスクロールニュースティッカーを作成しようとしています。これがjavascriptとその下の私のdivです。ありがとう。
$('.ticker-wrapper').cycle({
fx: 'scrollHorz',
continuous: 1,
easeIn: 'linear',
easeOut: 'linear'
});
<div class ="ticker-wrapper">
<!--pulling in custom post type "Ticker"-->
<article class="ticker">
<?php $recentPosts = new WP_Query("showposts=8&post_type=Ticker");
while($recentPosts->have_posts()):$recentPosts->the_post();?>
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article">
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('ticker-img', array('class' => 'ticker-image'));?></a>
<h2 class="ticker-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<p class="ticker-excerpt"><?php the_excerpt('ticker_length'); ?></p>
</article> <!--end ticker-->
<?php endwhile; wp_reset_query(); ?>
</div> <!--end ticker-wrapper-->