不同页面图片源路径变化

Image source path changing on different pages

我正在使用 Genesis 并且我有一个 functions.php 我已经使用页脚的挂钩在其中插入了图像。

我使用小部件将图像插入页眉。

在首页看图片可以正常显示,但是我切换页面的时候不显示了。

进一步调查得出结论,wordpress正在寻找路径错误的文件来源。

这是主页中的路径源 - wp-content\themes\childTheme-Almog\images\linkedin.png

wordpress 正在寻找它。

然而,在另一个名为 'X' 的页面上,wordpress 正在寻找相同的图像,如下所示: \wordpress\x\wp-content\themes\childTheme-Almog\images\linkedin.png

如您所知,它将页面名称作为文件夹添加到路径中,这是不应该的,因为图像不存在。

有没有办法让wordpress像在主页上一样查找图片?

以下是我的图像在 functions.php 中的实现方式:

<div class="d_footer">
        <ul id="list_left">
            <li class="foot" id="ft_text1"><img src="wp-content\themes\childTheme-Almog\images\phone.png" alt="phone">
                <span style="color: #969697">|</span><span style="margin-left:30px;"></span><img src="wp-content\themes\childTheme-Almog\images\envelope.png" alt="envelope"></li>
            <li class="foot" id="ft_text2"></li>

        </ul>
    <ul class="foot" id="list_right">
        <li id="ft_text3"><img src="\wp-content\themes\childTheme-Almog\images\linkedin.png" alt="linkedin" align="left">Almog's linkedin profile</li>
        <li id="ft_text4"></li>
    </ul>
</div>

您真的应该使用 Wordpress 的 get_stylesheet_directory_uri 变量来缓解这样的路径问题。