You could make a page template http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates
And then you could post some data via $_GET /search2/?search=xxx to that page and do a custom wp_query where you use ‘s=” . $_GET[“search’]
http://codex.wordpress.org/Class_Reference/WP_Query
Something like this:
$args = array(
's' => $_GET['search']
);
$the_query = new WP_Query( $args );
// The Loop
while ( $the_query->have_posts() ) : $the_query->the_post();
echo '<li>';
the_title();
echo '</li>';
endwhile;
Related Posts:
- Template issues getting ajax search results
- Template issues getting ajax search results
- search page not found? (search.php or searchpage.php)
- how to limit search to post titles?
- How does WordPress search work behind the scenes?
- Remove some pages from search
- Extend WordPress search to include user search
- WordPress blog with 30 000 posts: poor search performance
- How do I filter the search results order?
- Link to search page without search parameter
- Search/Replace for editor in HTML-mode
- How to pass a search $_GET parameter to a new custom search page?
- Do I need to sanitize WordPress search query?
- Neither the_excerpt() nor the_content() works properly?
- Add custom parameters to JSON API search query?
- How to stop _wpnonce and _wp_http_referer from appearing in URL
- Return all Tags from search results
- Search results with custom loop don’t update when paged
- Adjust the results quantity for Search Results page pagination
- Does WP search natively return results sorted by type (post, post type, page, category…)?
- How do I properly redirect outbound links with special characters
- Display Categories in Search Results
- intellisense in wp search
- Sitelinks Search Box in Google and urlencoded search string
- SQL query to get adjacent posts from search query
- Is it possible to search authors by profile field?
- Search result conditonal tag
- WordPress search issue with searching html tags
- Get search term not on searh results page?
- Alphabetical search
- Search in Two Categories
- Custom Search Query running on every page
- Use search in fancybox
- Two Search Boxes: one all content, one only titles
- Using ElasticSearch on WordPress
- Keep query string in url after executing a serch
- How can I remove the search window?
- Customize search page
- Customise search page depending on result
- How do I make search only search in post content?
- How do I use a block to display search results?
- How to make search include data from wp_postmeta?
- Use “search” in permalink?
- Can I change the default search behavior “OR search” to “AND search”?
- Risk of sql injection for custom search form
- Where should I start looking if I want to implement my own custom search?
- Filter post_type thumbnail in Search result
- Home page shows recent post, serps rank post within homepage
- Knowledge base high performance Live Search
- Search form not finding content in template page
- How to set empty search to load homepage template and not index.php
- custom search results affected by _REQUEST set
- Edit css for search results page
- How to implement search suggestions into search bar?
- Custom post_type search pages
- Modifying post content with the_post action hook
- Trying to remove plural ‘s’ from search Query but it’s just removing every letter of the end – what am I doing wrong? Thanks
- Limit search to a specific folder in website
- Blog search just returns to front page (not search results!)
- How do i append UNION SQL Query with default search query
- How to insert meta keyword to search result page
- Post and page content not displaying in search results
- Custom search Dashboard widget
- Disable character’s replace in search
- WordPress Search Form Issue | Misleading search URL. | Pointing to wrong URL
- Echoing home_url() returns current url in searchform.php
- Custom search page wont allow URL params
- Remove Page Timestamp via functions.php so it doesn’t show in Google Search Result Description [closed]
- Use pre_get_posts to display search results by meta in specific order
- Prevent search query from taking place when using Google CSE?
- Included posts on a page searchable
- Site Title in my Search URL
- I want empty search returns to home page in my wordpress
- Prevent searches less than 4 characters
- Search wordpress using three different drop down menus
- search: get minimum number of post for each post type
- How to get search result as image rather than page
- Search results – 404 error after hitting enter
- Redirect wordpress search query if its a tag
- Is it possible to show subdomain posts in main domain search result?
- Replacing word in wordpress Search not working Properly
- How to add search box to table results in admin page [closed]
- how to disable autocomplete search on wpLink?
- How might I go about using the API to search for a user by email, but ensuring that it is an exact match?
- Add CPT to search results with pre_get_posts
- Replacing wordpress search with custom code
- Change output URL Search module
- How to show custom post type by either single meta_value or multiple meta_value(s) using WP_Query?
- search for single meta_key with numeric array of meta values
- How to customize default wordpress search query
- Customizing Google’s Search box in WordPress [closed]
- I’ve messed up the admin search functionality. Help!
- meta field search too restrictive in pre_get_post() for custom search
- Content instead Excerpt on term
- Custom search results page not showing excerpt
- Error when searching without any results
- Listing parent section in search results
- Search results: How to add direct jump to anchor?
- Limit search to posts and pages
- How make Autocomplete with wp_query in post_type attachment