我制作了一个网站的html / css模型,并希望将该静态网站集成到wordpress中。但是,图像没有出现,我将图像的路径作为网址localhost/wordpress/logo.png
。
我在localhost上开发它,所以localhost/wordpress/wp-content/themes/mytheme
中的主题
以及localhost/wordpress/wp-content/themes/mytheme/images/
上的图片。
我听说每个图片都必须使用一些PHP代码。有人可以帮帮我吗?
答案 0 :(得分:2)
根据您的需要,您必须使用以下内容:
<?php echo get_template_directory_uri() . '/images/logo.png; ?>
)