Site logo

Archived topic

display date and time on my header

4 replies · Started by 89tis on July 17, 2017

Viewing posts 1–5 of 5

how can i display date and time inside the heeder and above the meu bar

Hi there,

Do you currently have the navigation set to float right?

yes

Try this snippet:

add_action( 'generate_inside_navigation','generate_date_navigation' );
function generate_date_navigation()
{
    ?>
    <span class="nav-date">
        <?php the_date(); ?>
        <?php the_time(); ?>
    </span>
    <?php
}

Adding PHP: https://docs.generatepress.com/article/adding-php/

This archived topic is closed to new replies.