使用get_template_directory_uri()
:
$url = get_template_directory_uri() . \'/images/myimage.jpg\';
此函数将始终返回主题的正确路径。
如果要隐藏/缩短该URL,可以use an endpoint, 大概img
. 缺点是,您为每个图像请求加载完整的WordPress。
或使用mod\\u重写:
RewriteRule ^img/([a-z\\d-])\\.png /wp-content/themes/my_theme/img/$1.png [L]
这在独立主题中不起作用。