wordpress插件最近报了一个错误排查发现是因为php7.2及以上版本从新规定了常量的命名方式,需要带引号
修改前
$args = array(
'order' => DESC,
'cat' => $cat,
'orderby' => $orderby,
'showposts' => $limit,
'caller_get_posts' => 1
);
修改后
$args = array(
'order' => 'DESC',
'cat' => $cat,
'orderby' => $orderby,
'showposts' => $limit,
'caller_get_posts' => 1
);