1
언제, 언제하면 안 되는가, wp_list_pluck ()?
메타 데이터 지연 로딩에 대해 배우면서 다음 코드 줄을 만났습니다 . // Don't use `wp_list_pluck()` to avoid by-reference manipulation. $comment_ids = array(); if ( is_array( $comments ) ) { foreach ( $comments as $comment ) { if ( $comment instanceof WP_Comment ) { $comment_ids[] = $comment->comment_ID; } } } 나는 …