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.