当有新收藏的帖子时更新最喜欢的帖子数

时间:2016-09-02 12:42:04

标签: php wordpress plugins

我正在使用“WP Favourite posts”wordpress插件。

我在标题中有一个位置,我显示当前用户的优惠帖子总数。我是用以下代码完成的:

<?php echo sizeof(wpfp_get_users_favorites()); ?>

所以现在点击页面中的“添加到收藏夹”按钮,我想自动更新此计数。但不知道使用哪种动作。我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

这是我正在使用的代码。请注意,每个链接都在td内,但您也可以更改链接的CSS属性。

(jQuery)("a.wpfp-link").live( "click", function() {
if ((jQuery)(this).closest('td').hasClass('cellhighlight')=== true)
{
        (jQuery)(this).closest('td').removeClass('cellhighlight');
}
else
{
    (jQuery)(this).closest('td').addClass('cellhighlight'); 
}
var numItems = (jQuery)('.cellhighlight').length;
相关问题