开发者

PHP true or false

开发者 https://www.devze.com 2023-03-22 03:23 出处:网络
I am trying to modify a plugin called the \"events calendar\" for wordpress, to show past events. I have found this function:

I am trying to modify a plugin called the "events calendar" for wordpress, to show past events.

I have found this function:

/**
 * Returns true if the query is set for past events, false otherwise
 * 
 * @return bool
 */
function events_displaying_past() {
    global $spEvents;
    return开发者_Python百科 ($spEvents->displaying == "past") ? true : false;
}

Iow can I default this to true?


/**
     * 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;
    }
0

精彩评论

暂无评论...
验证码 换一张
取 消