Wordpress wp_get_attachment_image() to display sta

2019-09-09 03:33发布

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

1条回答
Juvenile、少年°
2楼-- · 2019-09-09 04:07

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.

查看更多
登录 后发表回答