我正在构建我的头文件,我无法弄清楚如何使用wp_get_attachment_image()来显示我的徽标。徽标的路径是images / logo.png。
我在网上找到的大多数例子都用它来动态显示图像
答案 0 :(得分:2)
您可以通过以下方式回显图像:
<img src="<?php echo get_stylesheet_directory_uri() . '/images/logo.png'; ?>">
get_stylesheet_directory_uri()
会为您的有效主题返回“uri”。
详细了解get_stylesheet_directory_uri()中的the Codex。
在这种情况下,您无法使用get_attachment_image()
,因为图片尚未通过媒体上传器附加到WordPress。