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; } } } Я …