Here’s what I found:
function hybrid_header() {
do_action( 'hybrid_header' );
}
Ok…that’s pretty straightforward. It’s telling the function to do itself?
And this too:
/* Header. */
add_action( 'hybrid_header', 'hybrid_site_title' );
add_action( 'hybrid_header', 'hybrid_site_description' );
So…the function “hybrid_Header” which is in my header.php file, is supposed to do the action “hybrid_header” and the action has the site title and description?
So I guess the “html code” for the header is located inside “hybrid_site_title” and “hybrid_site_description?” Where’s the HTML located?