Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * Disable MetForm add_meta_for_search_excluded
- *
- * This function is used to disable the MetForm plugin's functionality
- */
- function disable_metform_add_meta_for_search_excluded() {
- if ( class_exists( 'MetForm\Plugin' ) ) {
- remove_action( 'wp_head', array( MetForm\Plugin::instance(), 'add_meta_for_search_excluded' ) );
- }
- }
- add_action( 'init', 'disable_metform_add_meta_for_search_excluded' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement