一些帖子的get_the_title()并使用它的值

时间:2013-02-14 03:51:50

标签: php jquery wordpress

我有一个标准循环:

    <article class="somepost">  
       <?php       $a = get_the_title();   echo $a; ?>  
    </article> 

当我点击某篇文章(class =“somepost”)时,我如何获得某些帖子的标题价值

     $('.somempost').click(function(){ ??? });

感谢名单。

1 个答案:

答案 0 :(得分:1)

首先,我将标题设置为文章数据属性:

<?php $a = get_the_title(); ?>
<article class="somepost" data-title="<?php echo $a; ?>">
    <?php echo $a; ?>
</article>

然后在你的jQuery中,将标题设置为如下变量:

$('.somepost').click(function(){
    var the_title = $(this).data('title');
});