I have a custom post type, photo, and need to search for photos matching the title or description with the search keyword with various criteria: contains LIKE
photo
LIKE
Add the "s" key to your existing arguments array:
$loop = new WP_Query( array( 'post_type' => 'photo', 'posts_per_page' => 12, 'orderby' => 'post_date', 's' => 'search_term' ));
Documentation can be found at: http://codex.wordpress.org/Class_Reference/WP_Query#Search_Parameter