I have a custom field with meta_name is product_id. I am trying to determine how to search that field when using the wordpress search.

I know the wordpress search results page uses query_string which contains the "s" value for the keyword searched I just don't know how to change my code below to search the custom field mentioned.

$loop = new WP_Query("$query_string . '&posts_per_page=-1&post_type=product'"); ?> 
link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

think this section in the codex should have the answers you need with regards to adding in custom field parameters to you query:

http://codex.wordpress.org/Function_Reference/WP_Query#Custom_Field_Parameters

Not sure whether that will allow you to search within a particular custom field though. Can't be certain but I think you'd have to make some changes on the search form end of things. See how you get on with adding in the custom field parameters.

Off the top of my head I would think you would need something like:

$query = new WP_Query( array( 
    'meta_key' => 'product_id', 
    'meta_value' => $query_string,
    'posts_per_page' => '-1',
    'post_type' => 'product' 
) );

Not tested though!

link|improve this answer
Basically I want to just add the custom field product_id to the fields being searched in addition to the standard way wordpress searches. could you advise how to do this? is the way you suggested the way to go about doing this? – Jesse Jul 26 '11 at 2:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.