I'm trying to use wpdb class to get the post id from the top-level site in a WP-MU environment from one of the sub-sites using a meta value from the sub site. The following code pulls from the wp_2_postmeta table.

$result = $wpdb->get_row("SELECT post_id FROM $wpdb->postmeta WHERE meta_value LIKE '%".$lname."%'");

BUT I want to pull from the wp_postmeta table in the same database. i tried with explicit prefix: $wpdb->wp_postmeta

That doesnt work.

How can you specify the wp_postmeta table explictly using wpdb with WP MU?

link|improve this question
feedback

1 Answer

Did you try to hardcoded ?

You can try to enter the wp_postmeta directly into the query.

I know that is not so good solution, but if you create that code for your personal usage then you can try it ;)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.