I need to do a WP_Query with a LIKE on the post_title and category
This query_post is not working
query_posts(
array(
'post_type' => 'add_buying',
'like' => $keywords,
'posts_per_page' => 5,
'taxonomy' => 'add_country',
'term' => 'drawing'
));
Check this url and change the
like
parameter.Change your second parameter to ‘s’ and I think it’s going to work:
And good luck
title (string) – use post title (available with Version 4.4).