Guys I’ve found a fix on a Turkish SEO site:
Go to your SEO SearchTerms Tagging 2 Editor >searchterms-tagging-2/searchterms-tagging2.php and Change Fallowing code:
$post_count = $wpdb->get_var($wpdb->prepare( $sql ));
to
$post_count = $wpdb->get_var($wpdb->prepare( $sql, “”));
If it’s not enough and you are still seeing the Warning message change also:
$post_title = $wpdb->get_var($wpdb->prepare( $sql ));
to
$post_title = $wpdb->get_var($wpdb->prepare( $sql, “”));
Have a nice day!
Source:
(Second pice of code are not included in this article,but I’ve still had 1 warning, so found the code and change the way what I did in first one )