Advertisement
brooklyndesignstudio

QuadMenu Snippet to Fix Sub Search

Apr 10th, 2021 (edited)
1,225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | Source Code | 0 0
  1. <!-- Code goes in "quadmenu/lib/frontend/walker/class-quadmenu-item-search.php" (line 78) -->
  2. <!-- Insert one line "do action" between "endforeach" and ?> -->
  3.             <input type="hidden" name="post_type" value="<?php echo esc_attr( $search ); ?>">
  4.             <?php
  5.             endif;
  6.             endforeach;
  7. do_action('sub_search_fields', $this->item );
  8.   ?>
  9.     </form>
  10.         <?php          
  11.         return ob_get_clean();
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement