Forums › Forums › Search & Filter Pro › Manually add S&F to an existing query
Tagged: Beaver Builder
- This topic has 3 replies, 2 voices, and was last updated 9 years, 3 months ago by
Trevor.
-
Anonymous(Private) January 11, 2017 at 8:03 pm #81458
Hello,
I am trying to use S&F with Beaver Builder. I have a page using the Beaver Builder Posts module displaying a custom post type grid. I would like to add a dropdown at the top of the page to filter by and ACF field.
How can I add S&F to the query so the results show up on the same page.
Thanks for the help!
Trevor(Private) January 12, 2017 at 9:56 am #81577In that example, let us say the form ID is 1234, then it would become:
$args = array( 'post_type' => 'post', 'search_filter_id' => 1234, 'post_status' => 'future' ); $query = new WP_Query( $args );Using this method, it might be necessary to use the Custom Display method, you would have to test it out.
An alternative might be to find this part (or similar):
if (have_posts()) : while (have_posts()) : the_post();We can use this:
https://www.designsandcode.com/documentation/search-filter-pro/action-filter-reference/#Query_Posts
For example:
do_action('search_filter_query_posts', 1234);And put this in the line immediately preceding the
if (have_posts()) ...line. -
AuthorPosts