• Hi folks,

    I’ve been working on my first website ever, I LOVE WP… but one issue, how do I the header image link to the index page?

    Came across this but I’m not a programmer so I couldn’t figure out how to make it to use (where to place the code exactly without messing something up)…

    this is the code:

    <?php
    /**
     * Theme Header Section for our theme.
     *
     * Displays all of the <head> section and everything up till <div id="main" class="clearfix"> <div class="inner-wrap">
     *
     * @package ThemeGrill
     * @subpackage Accelerate
     * @since Accelerate 1.0
     */
    ?>
    <!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" />
    <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
    <?php
    /**
     * This hook is important for wordpress plugins and other many things
     */
    wp_head();
    ?>
    </head>
    
    <body <?php body_class(); ?>>
    <?php	do_action( 'accelerate_before' ); ?>
    <div id="page" class="hfeed site">
    	<?php do_action( 'accelerate_before_header' ); ?>
    	<header id="masthead" class="site-header clearfix">
    
    		<div id="header-text-nav-container" class="clearfix">
    
    			<?php if( accelerate_options( 'accelerate_header_image_position', 'position_two' ) == 'position_one' ) { accelerate_render_header_image(); } ?>
    
    			<div class="inner-wrap">
    
    				<div id="header-text-nav-wrap" class="clearfix">
    					<div id="header-left-section">
    						<?php
    						if( ( accelerate_options( 'accelerate_show_header_logo_text', 'text_only' ) == 'both' || accelerate_options( 'accelerate_show_header_logo_text', 'text_only' ) == 'logo_only' ) && accelerate_options( 'accelerate_header_logo_image', '' ) != '' ) {
    						?>
    							<div id="header-logo-image">
    								<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><img src="<?php echo accelerate_options( 'accelerate_header_logo_image', '' ); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"></a>
    							</div><!-- #header-logo-image -->
    						<?php
    						}
    						$screen_reader = '';
    						if ( ( accelerate_options( 'accelerate_show_header_logo_text', 'text_only' ) == 'logo_only' || accelerate_options( 'accelerate_show_header_logo_text', 'text_only' ) == 'none' ) ) {
    							$screen_reader = 'screen-reader-text';
    						}
    						?>
    						<div id="header-text" class="<?php echo $screen_reader; ?>">
    						<?php
    							if ( is_front_page() || is_home() ) : ?>
    								<h1 id="site-title">
    									<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
    								</h1>
    							<?php else : ?>
    								<h3 id="site-title">
    									<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
    								</h3>
    							<?php endif;
    							$description = get_bloginfo( 'description', 'display' );
    							if ( $description || is_customize_preview() ) : ?>
    								<p id="site-description"><?php echo $description; ?></p>
    							<?php endif;
    						?>
    						</div><!-- #header-text -->
    					</div><!-- #header-left-section -->
    					<div id="header-right-section">
    						<?php
    						if( is_active_sidebar( 'accelerate_header_sidebar' ) ) {
    						?>
    						<div id="header-right-sidebar" class="clearfix">
    						<?php
    							// Calling the header sidebar if it exists.
    							if ( !dynamic_sidebar( 'accelerate_header_sidebar' ) ):
    							endif;
    						?>
    						</div>
    						<?php
    						}
    						?>
    			    	</div><!-- #header-right-section -->
    
    			   </div><!-- #header-text-nav-wrap -->
    
    			</div><!-- .inner-wrap -->
    
    			<?php if( accelerate_options( 'accelerate_header_image_position', 'position_two' ) == 'position_two' ) { accelerate_render_header_image(); } ?>
    
    			<nav id="site-navigation" class="main-navigation inner-wrap clearfix" role="navigation">
    				<h3 class="menu-toggle"><?php _e( 'Menu', 'accelerate' ); ?></h3>
    				<?php
    					if ( has_nav_menu( 'primary' ) ) {
    						wp_nav_menu( array( 'theme_location' => 'primary' ) );
    					}
    					else {
    						wp_page_menu();
    					}
    				?>
    			</nav>
    		</div><!-- #header-text-nav-container -->
    
    		<?php if( accelerate_options( 'accelerate_header_image_position', 'position_two' ) == 'position_three' ) { accelerate_render_header_image(); } ?>
    
    		<?php
       	if( accelerate_options( 'accelerate_activate_slider', '0' ) == '1' ) {
    			if ( is_front_page() ) {
       			accelerate_featured_image_slider();
    			}
       	}
       	?>
    
    	</header>
    	<?php do_action( 'accelerate_after_header' ); ?>
    	<?php do_action( 'accelerate_before_main' ); ?>
    	<div id="main" class="clearfix">
    		<div class="inner-wrap clearfix">

    THANKS to anyone who can help ??
    Avi

  • The topic ‘Making the header image a link to index page?’ is closed to new replies.