This query works and returns the results that I want in MySQL but how do I get this to work in wordpress?
SELECT * FROM `wp_usermeta` WHERE `meta_key` = 'points' AND `user_id` = '1'
I want to be able to see all the ‘points’ earned by user 1. I need to be able to display this on posts and pages in wordpress.
Read this.
Use following code…..
It will return array as result.
You should try following code :
Hope it will helpful.