-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Plugin: Remove compat layers for WP 6.4 and 6.5 (#64096)
Co-authored-by: Mamaduka <mamaduka@git.wordpress.org> Co-authored-by: talldan <talldanwp@git.wordpress.org> Co-authored-by: hellofromtonya <hellofromtonya@git.wordpress.org> Co-authored-by: creativecoder <grantmkin@git.wordpress.org> Co-authored-by: ramonjd <ramonopoly@git.wordpress.org> Co-authored-by: dmsnell <dmsnell@git.wordpress.org> Co-authored-by: t-hamano <wildworks@git.wordpress.org>
- Loading branch information
1 parent
b27ff6f
commit 0af7e14
Showing
61 changed files
with
59 additions
and
20,456 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?php | ||
/** | ||
* A special compat layer for legacy font files upload directory. | ||
* | ||
* @see https://github.com/WordPress/gutenberg/pull/57688#issuecomment-2259037546 | ||
* | ||
* @package gutenberg | ||
*/ | ||
|
||
// @core-merge: Do not merge this function, it is for deleting fonts from the wp-content/fonts directory only used in Gutenberg. | ||
/** | ||
* Deletes associated font files from wp-content/fonts, when a font face is deleted. | ||
* | ||
* @param int $post_id Post ID. | ||
* @param WP_Post $post Post object. | ||
*/ | ||
function gutenberg_before_delete_font_face( $post_id, $post ) { | ||
if ( 'wp_font_face' !== $post->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 ); |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.