Skip to content

Instantly share code, notes, and snippets.

@Dinamiko
Created February 6, 2016 11:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Dinamiko/3ca6da2fc215e8328831 to your computer and use it in GitHub Desktop.
Save Dinamiko/3ca6da2fc215e8328831 to your computer and use it in GitHub Desktop.
<?php
// removes all shortcodes in PDF
function dkpdf_remove_all_shortcodes( $content ) {
$pdf = get_query_var( 'pdf' );
if( $pdf ) {
return strip_shortcodes( $content );
} else {
return $content;
}
}
add_filter( 'the_content', 'dkpdf_remove_all_shortcodes' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment