is_date

Definition:
function is_date() {}

Is the query for a date archive?

Source code

	function is_date() {

		return (bool) $this->is_date;

	}

2109

is_comment_feed

Definition:
function is_comment_feed() {}

Is the query for a comments feed?

Source code

	function is_comment_feed() {

		return (bool) $this->is_comment_feed;

	}

2107

is_comments_popup

Definition:
function is_comments_popup() {}

Whether the current URL is within the comments popup window.

Source code

	function is_comments_popup() {

		return (bool) $this->is_comments_popup;

	}

2105

is_client_error

Definition:
function is_client_error ($sc) {}

Parameters

  • $sc

Source code

function is_client_error ($sc) {

	return $sc >= 400 && $sc < 500;

}

2103

is_child_theme

Definition:
function is_child_theme() {}

Whether a child theme is in use.

Return values

returns:true if a child theme is in use, false otherwise.

Source code

function is_child_theme() {

	return ( TEMPLATEPATH !== STYLESHEETPATH );

}

2101