diff --git a/o2.php b/o2.php index 1584558..92d5836 100644 --- a/o2.php +++ b/o2.php @@ -891,6 +891,10 @@ public static function add_json_data( $content ) { return $content; } + if ( ! apply_filters( 'o2_process_the_content', true ) ) { + return $content; + } + // password protected post? return immediately (password protected pages are OK) if ( ! is_page() && ! empty( $post->post_password ) ) { return $content;