Skip to content

Instantly share code, notes, and snippets.

@Dinamiko
Created February 6, 2016 11:20
Show Gist options
  • Save Dinamiko/e7dcf17aa01a3e8ac0e2 to your computer and use it in GitHub Desktop.
Save Dinamiko/e7dcf17aa01a3e8ac0e2 to your computer and use it in GitHub Desktop.
<?php
// removes specific shortcode in PDF
function dkpdf_remove_shortcodes_bytag( $content ) {
$pdf = get_query_var( 'pdf' );
if( $pdf ) {
remove_shortcode( 'responsivevoice' );
add_shortcode('responsivevoice', '__return_false');
}
return $content;
}
add_filter( 'the_content', 'dkpdf_remove_shortcodes_bytag');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment