Jquery自动收报机完全在我的网站home page上工作,但不在页面上工作。我不知道为什么。
在此页面上,此自动收录器不显示帖子,只显示页面列表。
以下是标题上的TICKER代码
<div class="fl" id="hotnews">
<ul id="shreshth_news" class="shr_news">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<li><span class="heading"><a href="<?php the_permalink(); ?>"><?php the_title(); ?> </a> </span><span class="info"></span></li>
<?php endwhile; ?>
</ul></div>
这个自动收录器在single.php index.php等上顺利运行
答案 0 :(得分:0)
添加此代码而非上述代码
<div class="fl" id="hotnews">
<ul id="js-news" class="js-hidden">
<?php $the_query = new WP_Query('showposts=5&orderby=post_date&order=desc');
while ($the_query->have_posts()) : $the_query->the_post(); ?>
<li><span class="heading"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </span><span class="info"></span></li>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</ul></div>