Code-Snippets-Functions/Execute a function on a child site/WordPress/disable-font-library-rest-api-endpoints.txt

4 lines
130 B
Text

add_action( 'init', function() {
unregister_post_type( 'wp_font_family' );
unregister_post_type( 'wp_font_face' );
} );