[Resolved] Custom content to menu

Home Forums Support [Resolved] Custom content to menu

Home Forums Support Custom content to menu

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #152117
    Markku

    Hello,

    I would like to add custom content to the slideout menu, before navigation links, like this:

    [Custom html content]
    Nav link 1
    Nav link 2
    Nav link 3

    Does anyone have function for this purpose or suggestion for the plugin.

    Thanks!

    #152216
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    You can use the generate_inside_slideout_navigation hook.

    add_action( 'generate_inside_slideout_navigation', 'my_custom_slideout_content' );
    function my_custom_slideout_content()
    { ?>
        Your HTML in here.
    <?php }

    Adding PHP: https://generatepress.com/knowledgebase/adding-php-functions/

    #152440
    Diane

    what about after the navigation links?

    #152459
    Tom
    Lead Developer
    Lead Developer

    There’s no hook for that yet, but I’ll look into adding one 🙂

    #152609
    Diane

    that would be great thanks:)

    #152731
    Tom
    Lead Developer
    Lead Developer

    In the next version you’ll be able to use this hook: generate_after_slideout_navigation

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