Querying Database with wpdb
I tested your all attempts in a shortcode: function add_test_shortcode() { global $wpdb; global $post; $post_ID = $post->ID; $wpdb->show_errors = true; $result = $wpdb->get_var(‘SELECT meta_value FROM ‘.$wpdb->postmeta.’ WHERE meta_key=”my_test” AND post_id=’ . $post_ID); return $result; } add_shortcode( ‘test’, ‘add_test_shortcode’ ); It worked perfectly for me, so there might something from your own code: 1. Check … Read more