我在 WP 中的 index.php 上有一组徽标,它们出现在底部,就在我想要的位置。
但是它们不会出现在所有页面上,如果我在 page.php 中的确切位置添加确切的代码,它不会显示在我网站的任何页面上,并且我需要徽标出现在所有页面上。我是否在正确的文件中插入代码?
Index.php 和 Page.php 的结尾完全相同,所以这都是我的代码的结尾:
<?php
lets_make_carousel();
?>
<div id="footerlogos">
<div id="logotonal"><a href="#" target="_blank">
<img src="/new/wp-content/themes/music/images/footerlogos/tonal.png" /></a></div>
<div id="logoah"><a href="#">
<img src="/new/wp-content/themes/music/images/footerlogos/ah.png" /></a></div>
<div id="logotranceil"><a href="#" target="_blank">
<img src="/new/wp-content/themes/music/images/footerlogos/tranceil.png" /></a></div>
<div id="logobpm"><a href="#" target="_blank">
<img src="/new/wp-content/themes/music/images/footerlogos/bpm.png" /></a></div>
<div id="logoakum"><a href="#" target="_blank">
<img src="/new/wp-content/themes/music/images/footerlogos/akum.png" /></a></div>
</div>
<?php get_footer(); ?>
有什么想法吗?