Skip to content

Instantly share code, notes, and snippets.

@stompweb
Last active February 10, 2016 12:53
Show Gist options
  • Save stompweb/3eb0b1057d7ac4b3cbf0 to your computer and use it in GitHub Desktop.
Save stompweb/3eb0b1057d7ac4b3cbf0 to your computer and use it in GitHub Desktop.
<?php
function maybe_filter_content() {
if ('' != sanitize_text_field($_GET['op'])) {
add_filter("the_content", "rc_content_handler");
}
}
add_action('init', 'maybe_filter_content');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment