Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经在我的子主题中上传了一个图像文件夹wordpress-images->homeimages->myimage.jpg。当我转到时mywebsiteexample.com/images/homeimages/myimage.jpg,它返回该页面不可用,因此我无法使用 img src 中的相对路径来调用图像。
wordpress-images->homeimages->myimage.jpg
mywebsiteexample.com/images/homeimages/myimage.jpg
你可以这样做
mywebsiteexample.com/wp-content/themes/themefoldername/images/homeimages/myimage.jpg
例如使用它来获取当前活动的主题目录
您可以调用类似加载图像的方法
<img src="<?php echo bloginfo('template_url');?>/images/homeimages/myimage.jpg"/>
希望它可以帮助