- This topic has 1 reply, 2 voices, and was last updated 10 years, 12 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
These forums are now closed and remain for historical purposes.
None of the content applies to the new version 3. For support, get in touch via our contact form.
Forums › Forums › Search & Filter Pro › forms loop
Here is a query to grab all your search forms (taken from “search-filter-pro/includes/class-search-filter-widget.php”):
$custom_posts = new WP_Query('post_type=search-filter-widget&post_status=publish&posts_per_page=-1');
The number you reference is just the ID of the Post (a search form is actually a custom post type)…
Thanks