我在functions / footer.php的网站页脚中添加了一个菜单,它在我的主页上按需显示,但它没有显示在任何Post页面上。
这是网站http://www.cultcitychi.com/
以下是我的footer.php代码
`>
</div><!-- #content -->
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="site-info">
<?php // footer menu
wp_nav_menu( array('container_class' => 'menu-footer',
'theme_location' => 'secondary' ) ); ?>
</div><!-- .site-info -->
</footer><!-- #colophon -->
`
答案 0 :(得分:0)
您需要在single.php
文件的底部添加此代码,以便在每个帖子页面上显示页脚:
<?php get_footer(); ?>
<强>更新强>
我使用开发人员工具检查了您的网站,并且帖子页面上有页脚,但由于您的CSS存在缺陷,它没有出现。请在样式表的底部添加以下CSS,这样可以解决问题:
.single.single-thumbnail .site {
height: auto;
}
.single.single-thumbnail .site-footer {
padding-top: 0px;
}
.site-info {
margin: 0px auto;
padding-bottom: 0px;
}
footer#colophon {
z-index: 999;
}