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 に答える