Advertisement
MertcanGokgoz

child-theme-remove-functions

Dec 30th, 2018
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.40 KB | None | 0 0
  1. remove_action('wp_head', 'rsd_link');
  2. remove_action('wp_head', 'wp_generator');
  3. remove_action('wp_head', 'feed_links', 2);
  4. remove_action('wp_head', 'feed_links_extra', 3);
  5. remove_action('wp_head', 'index_rel_link');
  6. remove_action('wp_head', 'wlwmanifest_link');
  7. remove_action('wp_head', 'start_post_rel_link', 10, 0);
  8. remove_action('wp_head', 'parent_post_rel_link', 10, 0);
  9. remove_action('wp_head', 'adjacent_posts_rel_link', 10, 0);
  10. remove_action('wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0 );
  11. remove_action('wp_head', 'wp_shortlink_wp_head', 10, 0 );
  12. remove_action('wp_head', 'rel_canonical', 10, 0 );
  13. remove_action('wp_head', 'print_emoji_detection_script', 7 );
  14. remove_action('wp_print_styles', 'print_emoji_styles' );
  15. remove_action('set_comment_cookies', 'wp_set_comment_cookies');
  16. remove_action('um_post_registration_approved_hook', 'um_post_registration_approved_hook', 10, 0);
  17. remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 );
  18. remove_action('wp_head', 'print_emoji_detection_script', 7 );
  19. remove_action('admin_print_scripts', 'print_emoji_detection_script' );
  20. remove_action('wp_print_styles', 'print_emoji_styles' );
  21. remove_action('admin_print_styles', 'print_emoji_styles' );
  22. remove_filter('the_content_feed', 'wp_staticize_emoji' );
  23. remove_filter('comment_text_rss', 'wp_staticize_emoji' );  
  24. remove_filter('wp_mail', 'wp_staticize_emoji_for_email' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement