Days
Hours
Minutes
Seconds

Super Black Friday Sale!

0
No products in the cart.
  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #10039
    blankuser3030176
    Participant

    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.

    #10042
    blanknarek
    Participant
    global $wpdb;    
    $result = $wpdb->get_results( "SELECT * FROM wp_usermeta WHERE meta_key = 'points' AND user_id = '1'");
    print_r($result);
    

    Read this.

    #10041
    blankjaydeep-namera
    Participant

    Use following code…..

    $q="SELECT * FROM wp_usermeta WHERE meta_key = 'points' AND user_id = '1'";
    $result = $wpdb->get_results($q);
    

    It will return array as result.

    #10040
    blankamit-kumar-pro
    Participant

    You should try following code :

    global $wpdb;    
    $result = $wpdb->get_results( "SELECT * FROM ".$wpdb->prefix."usermeta WHERE meta_key = 'points' AND user_id = '1'");
    print_r($result);
    

    Hope it will helpful.

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.