post_type ) { return; } $font_files = get_post_meta( $post_id, '_wp_font_face_file', false ); if ( empty( $font_files ) ) { return; } $site_path = ''; if ( is_multisite() && ! ( is_main_network() && is_main_site() ) ) { $site_path = '/sites/' . get_current_blog_id(); } $font_dir = path_join( WP_CONTENT_DIR, 'fonts' ) . $site_path; foreach ( $font_files as $font_file ) { $font_path = $font_dir . '/' . $font_file; if ( file_exists( $font_path ) ) { wp_delete_file( $font_path ); } } } add_action( 'before_delete_post', 'gutenberg_before_delete_font_face', 10, 2 );