Created
February 7, 2016 09:02
-
-
Save Dinamiko/65a45b4d38241a9c58a5 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' ); | |
$content = str_replace('[responsivevoice voice="Danish Female" buttontext="Læs opgaven"]', '', $content); | |
$content = str_replace('[/responsivevoice]', '', $content); | |
} | |
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