Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Dinamiko/65a45b4d38241a9c58a5 to your computer and use it in GitHub Desktop.
Save Dinamiko/65a45b4d38241a9c58a5 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' );
$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