必须读取自定义字段themeOps
首先,更新索引option3
在数组中,然后保存/更新整个数组。
$kisiArray = get_post_meta( $post_id, \'themeOps\' );
$kisiArray[\'option3\'] = \'peach\';
update_post_meta( $post_id, \'themeOps\', $kisiArray );
<小时>
Update (按自定义字段排序)
$args = array(
\'post_type\' => \'post\',
\'meta_key\' => \'themeOps_option3\',
\'orderby\' => \'meta_value_num\',
\'order\' => \'ASC\',
);
$query = new WP_Query( $args );
您可以在中找到更多示例
Codex