hello_dolly

Definition:
function hello_dolly() {}

Source code

function hello_dolly() {

	$chosen = hello_dolly_get_lyric();

	echo "<p id='dolly'>$chosen</p>";

}

1949

header_textcolor

Definition:
function header_textcolor() {}

Display text color for custom header.

Source code

function header_textcolor() {

	echo get_header_textcolor();

}

1947

header_image

Definition:
function header_image() {}

Display header image path.

Source code

function header_image() {

	echo get_header_image();

}

1945

have_posts

Definition:
function have_posts() {}

Whether current WordPress query has results to loop over.

Defined actions

  • loop_end
    do_action_ref_array('loop_end', array(&$this));

Source code

	function have_posts() {

		if ( $this->current_post + 1 < $this->post_count ) {

			return true;

		} elseif ( $this->current_post + 1 == $this->post_count && $this->post_count > 0 ) {

			do_action_ref_array('loop_end', array(&$this));

			// Do some cleaning up after the loop

			$this->rewind_posts();

		}



		$this->in_the_loop = false;

		return false;

	}

1943

have_comments

Definition:
function have_comments() {}

Whether there are comments to loop over.

Source code

	function have_comments() {

		if ( $this->current_comment + 1 < $this->comment_count ) {

			return true;

		} elseif ( $this->current_comment + 1 == $this->comment_count ) {

			$this->rewind_comments();

		}



		return false;

	}

1941