我正在使用一个具有以下功能的插件:见问题的结尾。
我在模板文件中创建了一个挂钩:
<?php custom_hook(); ?>
这就是我的函数。php
function custom_hook() {
do_action(\'custom_hook\');
echo \'Custom Hook works!\';
}
add_action(\'custom_hook\', \'wnw_overall_rating_comments\', 1);
我很好奇,为什么没有加载。我甚至编辑了插件的add\\u操作,以查看我的过滤器是否工作,
add_action(\'custom_hook\',\'wnw_overall_rating_comments\');
但运气不好。
我错过什么了吗?
add_action(\'the_content\',\'wnw_overall_rating_comments\');
function wnw_overall_rating_comments($content)
{
global $post,$rating_table_name,$wnw_multi_rating_table,$multi_rating_image_on,$multi_rating_image_off,$multi_rating_image_half,$wpdb;
if($post->type != \'page\')
{
//some function
}
return $content.$rating_value;
}else
return $content;
}