Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Alan

    (@aneehas)

    this is my theme header html code

    Thread Starter Alan

    (@aneehas)

    <?php
    /**
    * Displays the header section of the theme.
    *
    */
    ?>
    <!DOCTYPE html>
    <html <?php language_attributes(); ?>>
    <head>

    <?php
    /**
    * travelify_meta hook
    */
    do_action( ‘travelify_meta’ );

    /**
    * travelify_links hook
    *
    * HOOKED_FUNCTION_NAME PRIORITY
    *
    * travelify_add_links 10
    * travelify_favicon 15
    * travelify_webpageicon 20
    *
    */
    do_action( ‘travelify_links’ );

    /**
    * This hook is important for WordPress plugins and other many things
    */
    wp_head();
    ?>

    </head>

    <body <?php body_class(); ?>>
    <?php
    /**
    * travelify_before hook
    */
    do_action( ‘travelify_before’ );
    ?>

    <div class=”wrapper”>
    <?php
    /**
    * travelify_before_header hook
    */
    do_action( ‘travelify_before_header’ );
    ?>
    <header id=”branding” >
    <?php
    /**
    * travelify_header hook
    *
    * HOOKED_FUNCTION_NAME PRIORITY
    *
    * travelify_headerdetails 10
    */
    do_action( ‘travelify_header’ );
    ?>
    </header>
    <?php
    /**
    * travelify_after_header hook
    */
    do_action( ‘travelify_after_header’ );
    ?>

    <?php
    /**
    * travelify_before_main hook
    */
    do_action( ‘travelify_before_main’ );
    ?>
    <div id=”main” class=”container clearfix”>

    Thread Starter Alan

    (@aneehas)

    I cannot find href attribute in my theme header php

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