1
Kapan sebaiknya Anda, dan kapan sebaiknya tidak, gunakan wp_list_pluck ()?
Saat mempelajari tentang metadata lazy-loading, saya bertemu dengan baris kode berikut : // 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; } } } …