WP_REST_Font_Families_Controller::get_font_face_ids
Get the child font face post IDs.
Method of the class: WP_REST_Font_Families_Controller{}
No Hooks.
Returns
Int[]. Array of child font face post IDs.
Usage
// protected - for code of main (parent) or child class $result = $this->get_font_face_ids( $font_family_id );
- $font_family_id(int) (required)
- Font family post ID.
Changelog
| Since 6.5.0 | Introduced. |
WP_REST_Font_Families_Controller::get_font_face_ids() WP REST Font Families Controller::get font face ids code WP 7.0
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;
}