我想從我的文字新聞博客添加帖子到一個JavaScript數組,但它不斷添加一個新行,並在JavaScript中導致錯誤。這裏是代碼停止PHP添加新行
<?php $num = 0 ; require($_SERVER['DOCUMENT_ROOT'] . '/blog/wp-load.php');query_posts('showposts=3');if (have_posts()) : while (have_posts()) : the_post(); ?>
news_content[<?php echo $num; ?>]="<a href='<?php the_permalink(); ?>' title='<?php the_title(); ?>'><?php the_title(); ?></a>Posted on <?php the_time('l jS F, Y') ?><?php the_excerpt(); ?>";
<?php $num = $num + 1; endwhile; else: echo "no posts"; endif; ?>
<?php wp_reset_query(); ?>
the_excerpt();
保持返回<p>post</p>
和新的生產線,導致錯誤
我怎麼能擺脫新線?
沒有發佈'the_exceprt()'我們幾乎不能幫你。 – Vyktor 2012-02-19 10:42:12