将_CUSTOM_LOGO();添加到标题 时间:2019-07-03 作者:Murat Deniz 我想在导航栏部分显示徽标。徽标出现了,但我无法用css控制它。 <?php wp_head(); ?> <nav class="navbar navbar-expand-md navbar-light sticky-top" style="background-color:rgb(3, 0, 180);" role="navigation"> <div class="container" > <!-- Brand and toggle get grouped for better mobile display --> <a class="navbar-brand" href="#" > <img src="<?php the_custom_logo(); ?>" height="42" width="42"> </a> 我在屏幕上输入了注释:https://i.ibb.co/w7rSkw3/11-A234233232ds-z.png 1 个回复 最合适的回答,由SO网友:WebElaine 整理而成 你遇到的最大问题是the_custom_logo() 在<img> 标签该功能已经输出了一个完整的图像标签,以及一个围绕它的主页链接。那么,更换这个<a class="navbar-brand" href="#" > <img src="<?php the_custom_logo(); ?>" height="42" width="42"> </a> 用这个<?php the_custom_logo(); ?> 删除屏幕截图中的第一个和第三个箭头。 文章导航