我正在尝试为wordpress修改名为“events calendar”的插件,以显示过去的事件。
我找到了这个功能:
/**
* Returns true if the query is set for past events, false otherwise
*
* @return bool
*/
function events_displaying_past() {
global $spEvents;
return ($spEvents->displaying == "past") ? true : false;
}
我可以将其默认为true吗?
答案 0 :(得分:3)
/**
* Returns true if the query is set for past events, false otherwise
*
* @return bool
*/
function events_displaying_past() {
global $spEvents;
return ($spEvents->displaying == "past" || !isset($spEvents->displaying)) ? true : false;
}