儿童主题wordpress图标路径

时间:2018-08-23 18:08:44

标签: wordpress child-theming

我需要将下面的图标路径替换为我创建的子主题的新路径。

当前路径为:

<img width="32" height="32" src="<?php echo GDLR_PATH . '/images/' . $type . '/social-icon/' . $social_slug . '.png'; ?>" alt="<?php echo $social_name; ?>" />​

这是子主题图标的完整路径:

/ the-child-theme / images / light / social-icon /(icon.png)

请给我任何帮助?

提前谢谢

1 个答案:

答案 0 :(得分:0)

您是说要为移动图像的子主题提供动态路径吗?

如果是,那么您可以使用以下功能:get_stylesheet_directory_uri()

它将为您提供子主题的路径。

示例:

img src =“'。get_stylesheet_directory_uri()。'/ images / light / social-icon / icon.png”