Created
February 6, 2016 11:20
-
-
Save Dinamiko/e7dcf17aa01a3e8ac0e2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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