如何在主题中添加php插件代码

时间:2018-01-15 作者:Giorgi

我已安装WP-PostRatings pluginIt即将建立,但我正在尝试将其添加到主题中。在插件模板中有这样的代码:我试图添加这些代码<php echo " These code here" ?> 但它没有显示出来。如果我需要在评论中插入php。如何为PHP循环生成代码?非短代码

enter image description here

但在管理面板中,它会显示我的评分:enter image description here

2 个回复
SO网友:janh

如果出于某种原因,您不想使用短代码([ratings]), 您可以随时使用the_ratings() 直接在模板中。

确保您在循环中,以便它能够为您识别正确的帖子ID。

如果要在循环之外使用它,可以手动传递ID。函数的签名为

function the_ratings($start_tag = \'div\', $custom_id = 0, $display = true) {
所以你可以称之为

the_ratings("div", 123)
如果您想输出ID为123的帖子的评分。

SO网友:Peter HvD

要在自己的代码中打印短代码,需要使用do_shortcode() 功能,例如:echo do_shortcode(\'[ratings id="1" results="true"]\');

结束