Skip to content

Instantly share code, notes, and snippets.

View leandwo's full-sized avatar

Leandro leandwo

View GitHub Profile
@leandwo
leandwo / disable_yoast_meta_tags.php
Last active August 22, 2020 21:26
These are the hooks needed to disable or filter on yoast meta tags added to each page
<?php
add_filter( 'wpseo_json_ld_output', '__return_false' );
add_filter( 'wpseo_robots', '__return_false' );
add_filter( 'wpseo_canonical', '__return_false' );
add_filter( 'wpseo_title', '__return_false' );
add_filter( 'wpseo_metadesc', '__return_false' );