Respostas no Fórum

Visualizando 2 respostas - 1 até 2 (de um total de 2)
  • Criador do tópico gustwar

    (@gustwar)

    mais ninguem?

    Criador do tópico gustwar

    (@gustwar)

    Como coloca esse coloca esse comando? segue o codigo do header.php

    <?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’ );
    ?>

Visualizando 2 respostas - 1 até 2 (de um total de 2)