求教:购物盒子不兼容主题
购物盒子好像与我的主题不兼容,麻烦赐教下,如何修复这个问题。
启用购物盒子插件后显示:
无法启用插件,因为它引起了一个致命错误(fatal error)
Fatal error: Cannot redeclare is_admin_comment() (previously declared in D:\ceshi\xampp\htdocs\wordpress\wp-content\themes\2FengYun2\functions.php:225) in D:\ceshi\xampp\htdocs\wordpress\wp-content\plugins\shoppingbox\cat-bbs_sigon.php on line 10
我的主题代码:
224 // 判断管理员
225 function is_admin_comment ($comment_ID=0) {
226 $user_id = get_comment($comment_ID)->user_id;
227 $user_info = get_userdata($user_id);
228 return $user_info->user_level == 10;
229 return $admin_comment;
230 }
购物盒子代码:
1 <?php
2
3 function is_admin_comment( $comment_ID = 0 ) {
4 $comment = get_comment( $comment_ID );
5 $admin_comment = false; //设置一个布尔类型的变量用于判断该留言的ID是否为管理员的留言
6 if($comment->user_id == 1){
7 $admin_comment = true;
8 }
9 return$admin_comment;
10 }
您好!请登录