Title: Clickable Header
Last modified: August 21, 2016

---

# Clickable Header

 *  [jblazze32](https://wordpress.org/support/users/jblazze32/)
 * (@jblazze32)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/clickable-header-7/)
 * Hello,
 * First time poster on this forum so forgive me if this question has been asked
   before. I am researching how to make a custom header clickable using the Attitude
   theme version 3.5.1 for my [site](http://joshandnatalia.com).
 * Where should I make the necessary change(s) within header.php to make the custom
   header clickable; thus, allowing it to link to a static page?
 *     ```
       <?php
       /**
        * Displays the header section of the theme.
        *
        * @package Theme Horse
        * @subpackage Attitude
        * @since Attitude 1.0
        */
       ?>
       <!DOCTYPE html>
       <html <?php language_attributes(); ?>>
       <head>
   
       	<?php
       		/**
       		 * attitude_title hook
       		 *
       		 * HOOKED_FUNCTION_NAME PRIORITY
       		 *
       		 * attitude_add_meta 5
       		 * attitude_show_title 10
       		 *
       		 */
       		do_action( 'attitude_title' );
   
       		/**
       		 * attitude_meta hook
       		 */
       		do_action( 'attitude_meta' );
   
       		/**
       		 * attitude_links hook
       		 *
       		 * HOOKED_FUNCTION_NAME PRIORITY
       		 *
       		 * attitude_add_links 10
       		 * attitude_favicon 15
       		 * attitude_webpageicon 20
       		 *
       		 */
       		do_action( 'attitude_links' );
   
       		/**
       		 * This hook is important for wordpress plugins and other many things
       		 */
       		wp_head();
       	?>
   
       </head>
   
       <body <?php body_class(); ?>>
       	<?php
       		/**
       		 * attitude_before hook
       		 */
       		do_action( 'attitude_before' );
       	?>
   
       	<div class="wrapper">
       		<?php
       			/**
       			 * attitude_before_header hook
       			 */
       			do_action( 'attitude_before_header' );
       		?>
       		<header id="branding" >
       			<?php
       				/**
       				 * attitude_header hook
       				 *
       				 * HOOKED_FUNCTION_NAME PRIORITY
       				 *
       				 * attitude_headerdetails 10
       				 */
       				do_action( 'attitude_header' );
       			?>
       		</header>
       		<?php
       			/**
       			 * attitude_after_header hook
       			 */
       			do_action( 'attitude_after_header' );
       		?>
   
       		<?php
       			/**
       			 * attitude_before_main hook
       			 */
       			do_action( 'attitude_before_main' );
       		?>
       		<div id="main" class="container clearfix">
       ```
   
 * Any help is greatly appreciated 🙂

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [12 years, 8 months ago](https://wordpress.org/support/topic/clickable-header-7/#post-3946229)
 * You’d need to first [create a Child Theme](http://codex.wordpress.org/Child_Themes).
 *  Thread Starter [jblazze32](https://wordpress.org/support/users/jblazze32/)
 * (@jblazze32)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/clickable-header-7/#post-3946337)
 * Hello,
 * I followed the instructions listed [here](http://codex.wordpress.org/Child_Themes)
   and have successfully created a Child Theme of Attitude version 3.5.1.
 * Which file should I edit to enable onclick functionality for the header to my
   [site ](http://joshandnatalia.com)?
 * thanks,

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Clickable Header’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/attitude/4.0.5/screenshot.png)
 * Attitude
 * [Support Threads](https://wordpress.org/support/theme/attitude/)
 * [Active Topics](https://wordpress.org/support/theme/attitude/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/attitude/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/attitude/reviews/)

## Tags

 * [clickable header](https://wordpress.org/support/topic-tag/clickable-header/)

 * 2 replies
 * 2 participants
 * Last reply from: [jblazze32](https://wordpress.org/support/users/jblazze32/)
 * Last activity: [12 years, 8 months ago](https://wordpress.org/support/topic/clickable-header-7/#post-3946337)
 * Status: not resolved