2012-07-28 36 views
0

jquery股票工作在我的網站home page完美,但不能在頁面上工作。我不知道爲什麼。新聞速遞不工作在wordpress頁面

在頁面上,此代碼不顯示帖子,它只顯示頁面列表。

這裏是滾動字幕的代碼上頭部

<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

添加本,而不是上面的代碼

<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>