标签: wordpress
我正在使用word in page in word press.when我从我的系统上传图像获取本地主机id.if我迁移到服务器该URL丢失。 所以我想在word press中获得动态根URL以应用于图像src。
答案 0 :(得分:0)
在向主题添加图片时,您应该使用bloginfo( 'template_url' ):
bloginfo( 'template_url' )
<img src="<?php bloginfo( 'template_url' ) ?>/images/your-image.png" />