Replies: 0
Hello,
i get this error message
WordPress database error: [Table ‘faculty.wp_postmeta’ doesn’t exist]
This is my custom query, for a live search that i developed:
$args = array(
'post_type' => "faculty",
'posts_per_page' => -1,
'orderby' => 'title',
'order' => 'ASC',
'tax_query' => array(
array(
'taxonomy' => 'faculty_list',
'field' => 'term_id',
'terms' => $term_id,
)
),
's' => $search
);
Thanks