How can I insert a clickable logo in menu of word press site?

please see this page : https://www.times11.com.

This is a wordpress website and I am using a child theme of “World News” theme.

I wish to put a clickable logo in menu (replacing Times11 text) without using any plugin.

Someone please help, I am stuck badly.

Here is the menu item. Is there a way to insert an <img tag> instead of “times11” text within <a>?

<li id="menu-item-133" class="times11logo menu-item menu-item-type-custom menu-item-object-custom menu-item-133">
<a href="https://www.times11.com">times11</a></li>

Here is my functions.php file (child theme):

<?php 
     add_action( 'wp_enqueue_scripts', 'world_news_child_enqueue_styles' );
     function world_news_child_enqueue_styles() {
          wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); 
          } 
?>

The parent header.php is below:

<?php
/**
 * The header for our theme
 *
 * This is the template that displays all of the <head> section and everything up until <div id="content">
 */

?>
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
    <meta charset="<?php bloginfo( 'charset' ); ?>">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="profile" href="https://gmpg.org/xfn/11">

    <?php wp_head(); ?>
</head>

<body <?php body_class(); ?>>
    <?php wp_body_open(); ?>
    <div id="page" class="site">
        <a class="skip-link screen-reader-text" href="#primary"><?php esc_html_e( 'Skip to content', 'world-news' ); ?></a>
        <div id="loader">
            <div class="loader-container">
                <div id="preloader" class="style-4">
                    <div class="dot"></div>
                </div>
            </div>
        </div><!-- #loader -->
        <header id="masthead" class="site-header">
            <?php if ( get_theme_mod( 'world_news_enable_topbar', false ) === true ) : ?>
                <div class="top-header-part">
                    <div class="ascendoor-wrapper">
                        <div class="top-header-wrapper">
                            <div class="top-header-left">
                                <div class="date-wrap">
                                    <i class="far fa-calendar-alt"></i>
                                    <span><?php echo esc_html( date( 'D, M j, Y' ) ); ?></span>
                                </div>
                            </div>
                            <div class="top-header-right">
                                <div class="social-icons">
                                    <?php
                                    if ( has_nav_menu( 'social' ) ) {
                                        wp_nav_menu(
                                            array(
                                                'menu_class'  => 'menu social-links',
                                                'link_before' => '<span class="screen-reader-text">',
                                                'link_after'  => '</span>',
                                                'theme_location' => 'social',
                                            )
                                        );
                                    }
                                    ?>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            <?php endif; ?>
            <div class="middle-header-part <?php echo esc_attr( ! empty( get_header_image() ) ? 'ascendoor-header-image' : '' ); ?>" style="background-image: url('<?php echo esc_url( get_header_image() ); ?>')">
                <div class="ascendoor-wrapper">
                    <div class="middle-header-wrapper">
                        <div class="site-branding">
                            <?php if ( has_custom_logo() ) { ?>
                                <div class="site-logo">
                                    <?php the_custom_logo(); ?>
                                </div>
                            <?php } ?>
                            <div class="site-identity">
                                <?php
                                if ( is_front_page() && is_home() ) :
                                    ?>
                                <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
                                    <?php
                                else :
                                    ?>
                                    <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
                                    <?php
                                endif;
                                $world_news_description = get_bloginfo( 'description', 'display' );
                                if ( $world_news_description || is_customize_preview() ) :
                                    ?>
                                    <p class="site-description"><?php echo esc_html( $world_news_description ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></p>
                                    <?php
                                endif;
                                ?>
                            </div>
                        </div><!-- .site-branding -->
                        <?php
                        $advertisement     = get_theme_mod( 'world_news_header_advertisement' );
                        $advertisement_url = get_theme_mod( 'world_news_header_advertisement_url' );
                        $advertisement_url = ! empty( $advertisement_url ) ? $advertisement_url : '#';
                        if ( ! empty( $advertisement ) ) {
                            ?>
                            <div class="mag-adver-part">
                                <a href="<?php echo esc_url( $advertisement_url ); ?>">
                                    <img src="<?php echo esc_url( $advertisement ); ?>" alt="<?php esc_attr_e( 'Advertisment Image', 'world-news' ); ?>">
                                </a>
                            </div>
                            <?php
                        }
                        ?>
                    </div>
                </div>
            </div>
            <div class="bottom-header-part-outer">
                <div class="bottom-header-part">
                    <div class="ascendoor-wrapper">
                        <div class="bottom-header-wrapper">
                            <div class="navigation-part">
                                <nav id="site-navigation" class="main-navigation">
                                    <button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false">
                                        <span></span>
                                        <span></span>
                                        <span></span>
                                    </button>
                                    <div class="main-navigation-links">
                                        <?php
                                        wp_nav_menu(
                                            array(
                                                'theme_location' => 'primary',
                                            )
                                        );
                                        ?>
                                    </div>
                                </nav><!-- #site-navigation -->
                            </div>
                            <div class="header-search">
                                <div class="header-search-wrap">
                                    <a href="#" title="Search" class="header-search-icon">
                                        <i class="fa fa-search"></i>
                                    </a>
                                    <div class="header-search-form">
                                        <?php get_search_form(); ?>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </header><!-- #masthead -->

        <?php
        if ( ! is_front_page() || is_home() ) {

            if ( is_front_page() ) {
                // Flash News.
                require get_template_directory() . '/sections/flash-news.php';

                // Banner Section.
                require get_template_directory() . '/sections/banner.php';

            }

            ?>
            <div id="content" class="site-content">
                <div class="ascendoor-wrapper">
                    <div class="ascendoor-page">
                        <?php
        }
        ?>

Tried various plug-ins, but all prompt to build a new page. They dont assist in edit the existing one. I managed to upload the logo, but struggled to make it clickable.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật