记录 WordPress 的一些常见报错及解决方法
一、添加链接报错
文章源自十年又十年-https://www.bbigsun.com/205.html
报错信息:文章源自十年又十年-https://www.bbigsun.com/205.html
operty "ID" on null in /wp-content/plugins/wp-githuber-md/src/helpers.php on line 62文章源自十年又十年-https://www.bbigsun.com/205.html
解决方法:文章源自十年又十年-https://www.bbigsun.com/205.html
在 插件文件编辑器 中修改 helpers.php
代码文章源自十年又十年-https://www.bbigsun.com/205.html
原代码 62 行未判断 post 是否为空,故当 post 为空时报错。文章源自十年又十年-https://www.bbigsun.com/205.html
function githuber_current_user_can( $action ) {
global $post;
if ( current_user_can( $action, $post->ID ) ) {
return true;
}
return false;
}
添加判断语句,如果 post 不为空执行代码文章源自十年又十年-https://www.bbigsun.com/205.html
function githuber_current_user_can( $action ) {
global $post;
if ( ! empty( $post ) ) {
if ( current_user_can( $action, $post->ID ) ) {
return true;
}
}
return false;
}
文章源自十年又十年-https://www.bbigsun.com/205.html文章源自十年又十年-https://www.bbigsun.com/205.html 纸上得来终觉浅,绝知此事要躬行。
17688689121
我的微信
微信扫一扫
评论