mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://make.wordpress.org/core/2024/03/14/new-feature-font-library/#disable-the-rest-api
4 lines
130 B
Text
4 lines
130 B
Text
add_action( 'init', function() {
|
|
unregister_post_type( 'wp_font_family' );
|
|
unregister_post_type( 'wp_font_face' );
|
|
} );
|