使用javascript和php添加标题文本

时间:2012-12-26 10:14:02

标签: javascript

我正在尝试将一些标题文本添加到名为

的div位置
<div id="slidecaption"></div>

所以在我的js中这里是代码:

slides                  :   [   <?php 
    //query
    query_posts(array('post_type'=>'slider',
                      'posts_per_page'=>'20'
                      ));

    //loop
    if(have_posts()) : 
        while (have_posts()) : the_post();
            //feature image
            $large_image_url = wp_get_attachment_image_src(get_post_thumbnail_id(), 'full');
            $title = get_the_title();

            //echo slides
            echo "{image : '".$large_image_url[0]."', title : '<h1>This is a header</h1>', url : ''},";

        endwhile; 
    endif; 
?>]

我需要的是在上面的div中显示标题.. 我怎样才能做到这一点? 谢谢!

0 个答案:

没有答案