启用WP-postratings

时间:2017-04-23 13:42:50

标签: wordpress rating-system

我已经创建了自己的wordpress主题并安装了WP-Postratings插件,但它不起作用。我只添加

<?php if(function_exists('the_ratings')) { the_ratings(); } ?>

它显示评级图像,但我不能评价任何东西。

我应该在函数中添加一些东西,也许原因是ajax,我应该添加一些函数吗?

2 个答案:

答案 0 :(得分:1)

我在我的主题上使用相同的插件

评级按钮

if(function_exists('the_ratings')) { the_ratings(); }

评级Avarage

 if(function_exists('the_ratings')) { echo ''.expand_ratings_template('<span class="rating-images">%RATINGS_IMAGES%</span>', get_the_ID()); }

如果它不起作用你可能有任何javascript冲突,尝试禁用所有插件并再次尝试。你必须确保admin-ajax.php没有被服务器或其他任何东西阻止。

答案 1 :(得分:0)

您应该在功能中添加一些内容。那段代码就足够了。

这通常是因为插件与另一个插件崩溃了。逐个禁用其他插件,直到您可以评分。然后使用类似的插件更改引发问题的插件。