我正在尝试在 wordpress 中创建一个滚动新闻自动收录器,以在我的页脚中定位自定义帖子类型。这是下面的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-->