Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 59525

Database Error

$
0
0

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


Viewing all articles
Browse latest Browse all 59525

Trending Articles