Advertisement
GochiSiyan

disable for home and category

Sep 15th, 2021
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. add_action( 'wp', function () {
  2. if ( class_exists( 'Disable_Feeds' ) ) {
  3. if ( is_front_page() || is_category() ) {
  4. return;
  5. } else {
  6. $disabler = Disable_Feeds::get_instance();
  7. remove_action( 'wp_loaded', array( $disabler, 'remove_links' ) );
  8. remove_action( 'template_redirect', array( $disabler, 'filter_feeds' ), 1 );
  9. remove_filter( 'bbp_request', array( $disabler, 'filter_bbp_feeds' ), 9 );
  10. }
  11. }
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement