将_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>
我在屏幕上输入了注释:

enter image description here

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(); ?>
删除屏幕截图中的第一个和第三个箭头。

相关推荐

如何在默认情况下隐藏css并在按下按钮时显示

我已经安装了Elementor Pro page builder插件,我想设置一个扩展列,以便在按下按钮时扩展更多Elementor部分。我很确定这可以用jQuery完成,但无法让它正常工作。我用这个代码找到了工作的按钮jQuery( document ).on( \'click\', \'#MY_BTN\', function( event ) { event.preventDefault(); // Show/Hide the widget jQuery(