Special Character Appearing in my WordPress Pages Content

My guess is that you pasted something from a Windows environment and that’s the CR (carriage return, I think) character. I’d go into the editor and just remove those line breaks. That should fix the problem. Also, you might look into standardizing the content type meta tag. You’ve got <meta charset=”UTF-8″ /> I could be … Read more

debugging errors.. how to remedy?

Replace get_bloginfo( ‘siteurl’ ) with home_url(). As the get_bloginfo() Codex entry explains, siteurl is deprecated: ‘siteurl”https://wordpress.stackexchange.com/”home (note this is deprecated! from version 2.2)”https://wordpress.stackexchange.com/”url’ – Returns the ‘Site address (URL)’ set in Settings > General. This data is retrieved from the ‘home’ record in the wp_options table. Consider using home_url() instead.

after wordpress update to 3.5+ i get many errors in plugin wpdb::prepare()

prepare() takes at least 2 parameters. Most of your calls to prepare() are not needed. For example: $blogids = $wpdb->get_col($wpdb->prepare(“SELECT blog_id FROM $wpdb->blogs”)); In this code, if the call to $wpdb->prepare() were valid, it wouldn’t do anything. The function doesn’t do anything to the first parameter. It manipulates the values in the other parameters passed … Read more