Advertisement
fauzanjeg

Disable MetForm add_meta_for_search_excluded

Apr 2nd, 2025
465
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Disable MetForm add_meta_for_search_excluded
  4.  *
  5.  * This function is used to disable the MetForm plugin's functionality
  6.  */
  7. function disable_metform_add_meta_for_search_excluded() {
  8.     if ( class_exists( 'MetForm\Plugin' ) ) {
  9.         remove_action( 'wp_head', array( MetForm\Plugin::instance(), 'add_meta_for_search_excluded' ) );
  10.     }
  11. }
  12. add_action( 'init', 'disable_metform_add_meta_for_search_excluded' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement