Last active
May 18, 2017 22:58
-
-
Save greenhornet79/870b6f3336b12bc9a3b9c056702fde06 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
| add_filter( 'issuem_pdf_html', 'zeen101_edit_pdf_output', 10, 3 ); | |
| function zeen101_edit_pdf_output( $results, $term, $issue_id ) { | |
| return strip_shortcodes( $results ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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!