user1571609
user1571609

Reputation:

Wordpress wp_get_attachment_image() to display static image

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

Upvotes: 1

Views: 2197

Answers (1)

rnevius
rnevius

Reputation: 27112

You can echo the image via:

<img src="<?php echo get_stylesheet_directory_uri() . '/images/logo.png'; ?>">

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.

Upvotes: 4

Related Questions