【发布时间】:2018-09-10 13:48:06
【问题描述】:
我是一名新开发人员。我遇到了一个问题。我已经激活了一个用于 cmets 评级的插件。现在它显示在所有类型的帖子页面中。但我只想为我的自定义帖子类型xyz 显示此评论评分。我怎样才能做到这一点?如果 cmets 评级插件中的帖子类型为 xyz 但它不起作用,我已使用此代码启用 add_action。 Plugin
add_action('save_post','save_post_callback');
function save_post_callback($post_id){
global $post;
if ($post->post_type = 'xyz'){
add_action( 'comment_form_logged_in_after', 'ci_comment_rating_rating_field' );
add_action( 'comment_form_after_fields', 'ci_comment_rating_rating_field' );
return;
}
//if you get here then it's your post type so do your thing....
}
【问题讨论】:
-
这真的取决于插件。不同的插件将以不同的方式允许这样做。你试过插件支持论坛吗?
-
@Howdy_McGee 我用过这个插件link
-
你想在管理面板还是前端评分?
-
@Vel 它显示在前端并且运行良好。我希望它只显示我的自定义帖子评论部分,但它会显示在所有帖子中,自定义帖子评论部分。
标签: php wordpress custom-post-type