Skip to content

Instantly share code, notes, and snippets.

@alexander-young
Created January 17, 2022 17:00
Show Gist options
  • Star 35 You must be signed in to star a gist
  • Fork 19 You must be signed in to fork a gist
  • Save alexander-young/b0471a7a3451e56dbb8a7245ef293343 to your computer and use it in GitHub Desktop.
Save alexander-young/b0471a7a3451e56dbb8a7245ef293343 to your computer and use it in GitHub Desktop.
WP Basic Cleanup
<?php
// //remove emoji support
remove_action('wp_head', 'print_emoji_detection_script', 7);
remove_action('wp_print_styles', 'print_emoji_styles');
// // Remove rss feed links
remove_action( 'wp_head', 'feed_links_extra', 3 );
remove_action( 'wp_head', 'feed_links', 2 );
// // remove wp-embed
add_action( 'wp_footer', function(){
wp_dequeue_script( 'wp-embed' );
});
add_action( 'wp_enqueue_scripts', function(){
// // remove block library css
wp_dequeue_style( 'wp-block-library' );
// // remove comment reply JS
wp_dequeue_script( 'comment-reply' );
} );
// for wp-config.php
// define( 'CORE_UPGRADE_SKIP_NEW_BUNDLED', true );
// define('WP_POST_REVISIONS', false);
// define('WP_POST_REVISIONS', 5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment