wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



wp_lazyload_comment_meta › WordPress Function

Depuis6.3.0
Dépréciéen/a
wp_lazyload_comment_meta ( $comment_ids )
Paramètres:
  • (array) $comment_ids List of comment IDs.
    Requis: Oui
Défini(e) dans:
Codex:

Queue comment meta for lazy-loading.



Source

function wp_lazyload_comment_meta( array $comment_ids ) {
	if ( empty( $comment_ids ) ) {
		return;
	}
	$lazyloader = wp_metadata_lazyloader();
	$lazyloader->queue_objects( 'comment', $comment_ids );
}