メイン ポストの単一ページでメソッド メソッドの呼び出しをカスタマイズする必要があるため、パフォーマンスの問題が発生していますが、この部分の配列$get_posts
を上書きしたいコードがどこにあるかを見つけることができません。$q['fields']
switch ( $q['fields'] ) {
case 'ids':
$fields = "$wpdb->posts.ID";
break;
case 'id=>parent':
$fields = "$wpdb->posts.ID, $wpdb->posts.post_parent";
break;
default:
$fields = "$wpdb->posts.ID,$wpdb->posts.post_date,$wpdb->posts.post_title,$wpdb->posts.post_status,$wpdb->posts.post_name,$wpdb->posts.post_parent,$wpdb->posts.guid,$wpdb->posts.menu_order,$wpdb->posts.post_type,$wpdb->posts.post_mime_type";
}