我面临的情况是,我需要从WordPress数据库中可用的所有帖子中获取特定meta\\u键的meta\\u值。显然,这会导致大量的数据库查询。下面是它的外观:
foreach ( $quiz_takers as $competitor ) {
$quizzes_user_has_taken = get_post_meta( $competitor, \'quiz_results\', true );
// More stuff happens here.
}
我想知道是否有办法通过
get_post_meta()
在上面
我能想到的唯一解决方案是直接查询wp_postmeta
直接表格;但不确定什么是正确的方法。
如果你能为我指出正确的方向,我将不胜感激。我提前感谢您抽出时间。