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; } } } আমি …