• Resolved jimlongo

    (@jimlongo)


    Hi,
    I want to run a query inside my woocommerce templates on the backend.

    This will return the proper value if I do the following . . .

    <?php global $wpdb;
    	$wc = $wpdb->get_var( "
    		SELECT meta_value FROM wp_postmeta
                    WHERE post_id = 128 AND meta_key = '_mycustomfield' "
                                                 );
    			echo $wc;
    ?>

    I’m inside the woocommerce thankyou.php template at the moment and I want to filter not on post_id=128 but something along the lines of post_id=$order->post_id.

    I just can’t get the syntax for this type of query. How do I specify the current order?

    http://wordpress.org/extend/plugins/woocommerce/

Viewing 10 replies - 1 through 10 (of 10 total)
  • Roy Ho

    (@splashingpixelscom)

    Hmmmm why not just use

    $value = get_post_meta( $order->post_id, '_stored_value_name', true );

    Thread Starter jimlongo

    (@jimlongo)

    Hi, that’s simpler, but it still doesn’t return anything.

    Roy Ho

    (@splashingpixelscom)

    Well you have make sure this data exists first…But that is the correct way to pull post meta out of the db.

    Thread Starter jimlongo

    (@jimlongo)

    I know the data exists, I can query the database and return it.

    SELECT meta_value FROM wp_postmeta
    WHERE post_id = 128 AND meta_key = ‘_mycustomfield’

    Roy Ho

    (@splashingpixelscom)

    If the data exists, the function I mentioned will absolutely pull that data out.

    Based on your example query, it should look like:

    $value = get_post_meta( 128, '_mycustomfield', true );

    Thread Starter jimlongo

    (@jimlongo)

    Yes the example you just posted pulls the data. That is if I put the literal 128.
    But it doesn’t work with $order->post_id

    Roy Ho

    (@splashingpixelscom)

    Well then you should check into the post id if that is valid and set…

    Roy Ho

    (@splashingpixelscom)

    Try $order->id instead…

    Thread Starter jimlongo

    (@jimlongo)

    Are you referring to the wp_posts table?
    There is a row with ID 128

    I am in the woocommerce thankyou.php template and it is pulling information such as <?php echo $order->get_order_number(); ?> successfully.

    Thread Starter jimlongo

    (@jimlongo)

    That’s It!

    $order->id makes either versions of the code run,
    get_post_meta as well as $wpdb->get_var

    Thanks again.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘extract database query into templates’ is closed to new replies.