[Support request] display date and time on my header

Home Forums Support [Support request] display date and time on my header

Home Forums Support display date and time on my header

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #350643
    89tis

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

    #350673
    Leo
    Staff
    Customer Support

    Hi there,

    Do you currently have the navigation set to float right?

    #350681
    89tis

    yes

    #350686
    Leo
    Staff
    Customer Support

    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/

    #350699
    Tom
    Lead Developer
    Lead Developer

    Or put a widget like this into the header widget: https://en-ca.wordpress.org/plugins/date-and-time-widget/

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.