我有以下Worpress主题(http://alethemes.com/socha/),我试图在其中插入一个页脚图像。我在Appearance中尝试了以下代码 - >编辑 - > footer.php但所有发生的事情都是alt ="中的文字;图像说明"页脚部分显示 - 没有图像。对于图像源我已经将图像上传到Wordpress,并且我已经复制了Media - >中定义的图像链接URL。媒体库。下面代码中的URL只是URL的一个示例,而不是实际的URL。
</div>
<footer id="footer-main" role="contentinfo">
<?php if (ale_get_option('copyrights')) : ?>
<p class="copy"><?php echo ale_option('copyrights'); ?></p>
<!-- My Footer Image Here -->
<img src="http://mydomain.com/myimagefolder/image.format" alt="Image Description">
<?php else: ?>
<p class="copy">© <?php _e('2013. Socha Responsive Theme. ALL RIGHTS RESERVED.', 'aletheme')?></p>
<?php endif; ?>
<div class="topbutton">
<a href="#top" id="gotop"><?php _e('TOP', 'aletheme')?></a>
</div>
<div class="cf"></div>
</footer>
<?php wp_footer(); ?>
</body>
我也尝试在Appearance中插入上面的代码 - &gt;主题选项 - &gt;主题 - &gt;版权所有,但所有dipslayed都是alt =&#34;图像说明&#34;中的文字。
有谁能告诉我如何插入页脚图像?
答案 0 :(得分:4)
Wordpress无法找到您的图片。这绝对是您上传图片的位置吗?如果您通过WP上传器上传,它将位于“uploads”目录中。
尝试使用;
<img src="<?php echo get_template_directory_uri(); ?>/myimagefolder/image.format" />
使用Wordpress的内置get_template_directory()函数将确保如果URL更改,Wordpress将找到该图像。
此外,请确保将图像宽度和高度属性放入标记中。