I am building my header file and I cant figure out how to use the wp_get_attachment_image() to display my logo. The path to the logo is images/logo.png.
Most examples I found online use this to display images dynamically
I am building my header file and I cant figure out how to use the wp_get_attachment_image() to display my logo. The path to the logo is images/logo.png.
Most examples I found online use this to display images dynamically
You must be logged in to post a comment.
You can echo the image via:
get_stylesheet_directory_uri()
returns the “uri” for your active theme.Read more about get_stylesheet_directory_uri() in the Codex.
You can’t use
get_attachment_image()
in this case, because the image hasn’t been attached to WordPress via the Media Uploader.