Hello. How would I go about passing along some string that I have to a wordpress search query? I would like the search result to return a link to the post rather than display the entire found post by itself. Thanks.
Edit your search.php. In the loop just leave something like this: <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a> Code (markup):