Definition:
function hello_dolly() {}
Source code
function hello_dolly() {
$chosen = hello_dolly_get_lyric();
echo "<p id='dolly'>$chosen</p>";
}
1949
Definition:
function hello_dolly() {}
function hello_dolly() {
$chosen = hello_dolly_get_lyric();
echo "<p id='dolly'>$chosen</p>";
}
1949
Definition:
function header_textcolor() {}
function header_textcolor() {
echo get_header_textcolor();
}
1947
Definition:
function header_image() {}
function header_image() {
echo get_header_image();
}
1945
Definition:
function have_posts() {}
do_action_ref_array('loop_end', array(&$this)); 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() {}
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