I’m going through and reviewing my site after updating it to WordPress 2.3 and it looks like there are still some hidden “issues” stemming from the migration to the new Category/Tagging structure. The latest one that I found is related to the “Twitter Tools” plugin.
Update: Some people were reporting that “term_ID” was not working where “ID” was in capitals so I have changed the code references below to lower-case (e.g., “term_id”). Remember to retype your quotes!
Here is what I did to fix:
- Find, (Download), Open and Edit the “twitter-tools.php” file which resides in the “wp-content/plugins/twitter-tools/” directory
- Locate the following lines of code (around line 868):
function aktt_options_form() {
global $wpdb, $aktt;
$categories = $wpdb->get_results(”
SELECT *
FROM $wpdb->categories
ORDER BY cat_name
“);
$cat_options = ”;
foreach ($categories as $category) {
if ($category->cat_id == $aktt->blog_post_category) {
$selected = ‘selected=”selected”‘;
}
else {
$selected = ”;
}
$cat_options .= “\n\t<option value=’$category->cat_id‘ $selected>$category->cat_name</option>”;
}
{ 60 comments }














