WP_REST_Font_Families_Controller::get_font_face_ids( int $font_family_id ): int[]

In this article

Get the child font face post IDs.

Parameters

$font_family_idintrequired
Font family post ID.

Return

int[] Array of child font face post IDs.

Source

protected function get_font_face_ids( $font_family_id ) {
	$query = new WP_Query(
		array(
			'fields'                 => 'ids',
			'post_parent'            => $font_family_id,
			'post_type'              => 'wp_font_face',
			'posts_per_page'         => 99,
			'order'                  => 'ASC',
			'orderby'                => 'id',
			'update_post_meta_cache' => false,
			'update_post_term_cache' => false,
		)
	);

	return $query->posts;
}

Changelog

VersionDescription
6.5.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.