我正在用图像替换woocommerce产品页面上的销售徽章。我成功地做到了这一点,在我的函数中添加了以下内容。php
add_filter(\'woocommerce_sale_flash\', \'vs_change_sale_content\', 10, 3);
function vs_change_sale_content($content, $post, $product){
$content = \'<span class="onsale"><img src="http://localhost:8888/marmalade/wp-content/uploads/2018/01/in-stock.png"></span>\';
return $content;
}
但是,这会为图像使用硬编码url。如何将源文件替换为主题文件夹?因此,当我更改服务器时,url仍然正确。