Breaking the ‘the_content’ filter.
-
Hey,
Just wanted to let you know that your plugin is breaking the
apply_filters('the_content')
filter in WP Admin.Please see the
wur_meta_box_content_view
function inwp-ultimate-review/app/content.php
.if(is_admin()) { return ''; }
should be:
if(is_admin()) { return $content; }
This is causing issues in other plugins ??
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Breaking the ‘the_content’ filter.’ is closed to new replies.