Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save greenhornet79/870b6f3336b12bc9a3b9c056702fde06 to your computer and use it in GitHub Desktop.
Save greenhornet79/870b6f3336b12bc9a3b9c056702fde06 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'issuem_pdf_html', 'zeen101_edit_pdf_output', 10, 3 );
function zeen101_edit_pdf_output( $results, $term, $issue_id ) {
return strip_shortcodes( $results );
}
@tpenberthy
Copy link

I put this into the functions.php file in my child theme and it didn't do the trick as written, darn it.

Did I put it in the wrong place?

Will keep hacking at it...

Thank you again!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment