I need to search for the exact title. but my code sometime fetch similar title which is like
I love him,
I love,
I love my country,
I need only search the second title "I love". How can I achieve this?
$title= "I love";
global $post;
$args = array(
'post_type' => 'course',
"s" => $title,
'post_status' => 'publish',
'posts_per_page' => -1,
'meta_key' => 'vibe_product',
'meta_value' => ' ',
'meta_compare' => '!=',
);