[Resolved] Search box on posts page

Home Forums Support [Resolved] Search box on posts page

Home Forums Support Search box on posts page

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #519285
    Denis

    Hello,
    I want to display a search box on top (like on this website) on blog posts page only.
    How could I do it?
    Thanks in advance.

    #519323
    Leo
    Staff
    Customer Support

    Hi there,

    Try adding this:
    <?php get_search_form(); ?>

    In the Before Content hook:
    http://demo.generatepress.com/hook-locations/
    https://docs.generatepress.com/article/hooks-overview/

    Make sure execute PHP is checked.

    #519353
    Denis

    Thank you Leo!
    I used this PHP code in the hook

    <?php
    
    if (  is_home() && ! is_front_page() ) {
      get_search_form();
    }
    
    ?>

    BTW is it possible to call a hook from functions.php? I’d prefer to keep active DISALLOW_FILE_EDIT

    #519609
    Leo
    Staff
    Customer Support
    #520395
    Denis

    That works!
    Thank you

    #520790
    Leo
    Staff
    Customer Support

    No problem!

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