我是新来的,我可以使用include()或get\\u template\\u part加载一个SVG文件,该文件作为特色图像直接上传到HTML页面中吗?
我需要设置svg图像的动画,但我需要轻松地更改每个页面上的图像。
我尝试了这段代码,但没有成功,我找不到正确的路径,我只能在同一文件夹中加载svg图像。
$domain = get_site_url();
$svg_url = get_the_post_thumbnail_url(get_the_ID());
$svg = str_replace( $domain, \'\', $svg_url );
echo $svg; //only for read the url
get_template_part($svg);
// or
inlcude $svg;