In some rare cases it conflicts and changes wordpress queries – disable to fix.
-
On some sites having this plugin enabled seriously changes WordPress some queries which will result in hard to debug errors.
For example if you try
$args = array( 'post_type' => 'attachment', 'post_status'=>'any', 'meta_query' =>array(array( 'key' => akeyhere, 'value' => avaluehere, 'compare' => '=', )) ); var_dump( new WP_Query($args) )you will see with and without the plugin enabled there are very different queries and different results. It apparently is adding
[1]=> array(2) { ["key"]=> string(9) "_frm_file" ["compare"]=> string(10) "NOT EXISTS" } ["relation"]=> string(3) "AND"to the query without permission, causing completely different results and hours of debugging fun!
Update… seems this may be conflict with some combination of plugins, but this does happen on more than one site for me.
The topic ‘In some rare cases it conflicts and changes wordpress queries – disable to fix.’ is closed to new replies.