我正在尝试将主题的社交媒体图标从 png 转换为 svg ,但这是行不通的。图像未出现。我在做什么错了?
<a href="<?php echo $theme_option[$social_slug . '-header-social']; ?>" target="_blank" >
<object data="<?php echo GDLR_PATH . '/images/' . $type . '/social-icon/' . $social_slug . '.svg'; ?>" type="image/svg+xml">
</object>
</a>
通常,主题以png形式显示社交媒体图标,如下所示:
<a href="<?php echo $theme_option[$social_slug . '-header-social']; ?>" target="_blank" >
<img width="32" height="32" src="<?php echo GDLR_PATH . '/images/' . $type . '/social-icon/' . $social_slug . '.png'; ?>" alt="<?php echo $social_name; ?>" />
</a>