Definition:
function is_date() {}
Source code
function is_date() {
return (bool) $this->is_date;
}
2109
Definition:
function is_date() {}
function is_date() {
return (bool) $this->is_date;
}
2109
Definition:
function is_comments_popup() {}
function is_comments_popup() {
return (bool) $this->is_comments_popup;
}
2105
Definition:
function is_client_error ($sc) {}
function is_client_error ($sc) {
return $sc >= 400 && $sc < 500;
}
2103
Definition:
function is_child_theme() {}
returns:true if a child theme is in use, false otherwise.
function is_child_theme() {
return ( TEMPLATEPATH !== STYLESHEETPATH );
}
2101
is_comment_feed
Definition:
function is_comment_feed() {}
Source code
function is_comment_feed() { return (bool) $this->is_comment_feed; }2107