这是我的自定义sql查询;
$wpdb->prefix .'mariapostvote';
$query = "SELECT sum(vote_point) as total_votes,count(id) as toplam FROM 'wp_mariapostvote' WHERE post_id = '13793'";
如何使用$wpdb
类正确打印结果?
感谢。
答案 0 :(得分:1)
以下是您的答案
http://codex.wordpress.org/Class_Reference/wpdb#SELECT_a_Variable
对于var,你可以做
$result = $wpdb->get_var($query);
echo $result /* Print the result */