Remove Ayecode Meta Generators

/**
* Remove the 'Super Duper' generator in admin & front.
*/
add_action( 'wp_super_duper_widget_init', 'gdsnippet_remove_ayecode_generators', 25, 2 );
functiongdsnippet_remove_ayecode_generators( $options, $super_duper ) {
remove_action( 'admin_head', [ $super_duper, 'generator' ], 99 );
remove_action( 'wp_head', [ $super_duper, 'generator' ], 99 );
}

/**
* Remove the 'WP Font Awesome' generator in admin & front.
*/
add_action( 'init', 'gdsnippet_remove_wp_fontawesome_generators', 20, 0 );
functiongdsnippet_remove_wp_fontawesome_generators() {
if ( !class_exists( 'WP_Font_Awesome_Settings' ) ) return;

$wp_ftaw=WP_Font_Awesome_Settings::instance();
remove_action( 'admin_head', [ $wp_ftaw, 'add_generator' ], 99 );
remove_action( 'wp_head', [ $wp_ftaw, 'add_generator' ], 99 );
}

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us