mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
7 lines
405 B
Text
7 lines
405 B
Text
add_action( 'init', 'wp_remove_yoast_zapier_free_publishbox_text' );
|
|
function wp_remove_yoast_zapier_free_publishbox_text() {
|
|
if ( class_exists( 'Yoast\WP\SEO\Integrations\Third_Party\Zapier_Free' ) ) {
|
|
$zapier_free = YoastSEO()->classes->get( Yoast\WP\SEO\Integrations\Third_Party\Zapier_Free::class );
|
|
remove_action( 'wpseo_publishbox_misc_actions', [ $zapier_free, 'add_publishbox_text' ] );
|
|
}
|
|
}
|