Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created September 29, 2018 23:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/a3b4065963b33d8c918e33a8f0697e7e to your computer and use it in GitHub Desktop.
Save braddalton/a3b4065963b33d8c918e33a8f0697e7e to your computer and use it in GitHub Desktop.
add_action( 'genesis_after_header', 'after_header_image' );
function after_header_image() {
$image = sprintf( '%s/images/after-header.jpg', get_stylesheet_directory_uri() );
$output = sprintf( '<img src="%s" class="after-header" alt="Image" />', $image );
echo $output;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment