wpseek.com
A WordPress-centric search engine for devs and theme authors
_wp_after_delete_font_family is private and should not be used in themes or plugins directly.
_wp_after_delete_font_family › WordPress Function
Since6.5.0
Deprecatedn/a
› _wp_after_delete_font_family ( $post_id, $post )
Access: |
|
Parameters: (2) |
|
Defined at: |
|
Codex: |
Deletes child font faces when a font family is deleted.
Related Functions: _wp_before_delete_font_face, wp_delete_file, wp_ajax_delete_tag, wp_ajax_delete_comment, _wp_delete_post_menu_item
Source
function _wp_after_delete_font_family( $post_id, $post ) { if ( 'wp_font_family' !== $post->post_type ) { return; } $font_faces = get_children( array( 'post_parent' => $post_id, 'post_type' => 'wp_font_face', ) ); foreach ( $font_faces as $font_face ) { wp_delete_post( $font_face->ID, true ); } }