0

Jquery 代码在我的网站主页上完美运行,但在页面上不工作。我不知道为什么。

在此代码不显示帖子的页面上,它仅显示页面列表。

这是标题上的 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 等上运行顺利

4

1 回答 1

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>
于 2012-07-28T12:28:57.800 回答