如何更改wordpress主题代码,带有图像(徽标)的文本?

问题描述 投票:0回答:0

我需要更改我的 wordpress 主题中的文本 (LOGO),但我不知道该怎么做? 在标题中。 我试图在主题文件编辑器中编辑它。

我尝试在主题文件编辑器中编辑它,当我用文本更改图像时,图像突然显示一切正常,但是当我向下滚动时它就损坏了。 Text that i need to change

header.php的代码

<!DOCTYPE html>

<html <?php language_attributes(); ?>>

<?php $winta_redux_demo = get_option('redux_demo'); ?>

<head>

    <!-- Meta Tags -->

    <meta charset="<?php bloginfo( 'charset' ); ?>">

    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <?php if ( ! function_exists( 'has_site_icon' ) || ! has_site_icon() ) {?>

        <?php if(isset($winta_redux_demo['favicon']['url'])){?>

            <link rel="shortcut icon" href="<?php echo esc_url($winta_redux_demo['favicon']['url']); ?>">

        <?php } ?>

    <?php } ?>

    <?php wp_head(); ?> 


</head>

<body <?php body_class(); ?>>

 <div id="preloader"></div>
    <!-- Progress scroll totop -->
    <div class="progress-wrap cursor-pointer">
        <svg class="progress-circle svg-content" width="100%" height="100%" viewBox="-1 -1 102 102">
            <path d="M50,1 a49,49 0 0,1 0,98 a49,49 0 0,1 0,-98" />
        </svg>
    </div>
    <!-- Mouse cursor -->
    <div class="mouse-cursor cursor-outer"></div>
    <div class="mouse-cursor cursor-inner"></div>
    <!-- Navbar -->
    <nav class="navbar navbar-expand-lg">
        <div class="container">
            <!-- Logo -->
            <div class="logo-wrapper valign">
                <?php if(isset($winta_redux_demo['logo_text']) && $winta_redux_demo['logo_text'] != ''){?>
                <div class="logo">
                    <h2><a href="<?php echo esc_url(home_url('/')); ?>"><?php echo htmlspecialchars_decode(esc_attr($winta_redux_demo['logo_text']));?></a><span><?php echo htmlspecialchars_decode(esc_attr($winta_redux_demo['logo_meta']));?></span></h2>
                </div>
                <?php }else{?>
                <div class="logo">
                    
                    <h2><a href="<?php echo esc_url(home_url('/')); ?>"><?php echo esc_html__( 'winta', 'winta' )?>                     </a> 
                        <span><?php echo esc_html__( 'K E T E R I N G', 'winta' )?></span></h2>
                </div>
                <?php } ?>
            </div>
            <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <span class="icon-bar"><i class="ti-line-double"></i></span> </button>
            <!-- Navbar links -->
            <div class="collapse navbar-collapse" id="navbarSupportedContent">
                <?php 
                wp_nav_menu( 
                    array( 
                        'theme_location' => 'primary',
                        'container' => '',
                        'menu_class' => '', 
                        'menu_id' => '',
                        'menu'            => '',
                        'container_class' => '',
                        'container_id'    => '',
                        'echo'            => true,
                        'fallback_cb'       => 'wp_bootstrap_navwalker::fallback',
                        'walker'            => new winta_wp_bootstrap_navwalker(),
                        'before'          => '',
                        'after'           => '',
                        'link_before'     => '',
                        'link_after'      => '',
                        'items_wrap'      => '<ul class=" navbar-nav ml-auto %2$s">%3$s</ul>',
                        'depth'           => 1,        
                    )
                ); ?>
            </div>
        </div>
    </nav>
php html wordpress wordpress-theming
© www.soinside.com 2019 - 2024. All rights reserved.