WordPress のMy Category Orderプラグイン

少しずつWordpressをいじっています。今回はMy Category Order という
プラグインを入れました。

バージョン 2.8.3 | 作者: froman118 | プラグインのサイトを開く

2.8.3 に対応していたのと、順番が変えられるというのは大きいと思いました。
しかし、もう一つの管理サイトであるhttp://midia.dip.jp/blog/ こちらでは
うまく反映されません。順番が変わらないので不思議な感じです。

もしやと思いますが、テーマが邪魔しているとかも?

wp-includes/taxonomy.php is not writable.
You have 2 options:
1. Change the permissions on the file and click on My Category Order again to patch it automatically.
2. Modify the file manually :
After line number 683 :
if ( empty($_orderby) || 'id' == $_orderby )
add the following code:
else if ( 'order' == $orderby )
$orderby = 't.term_order';

また、上記のようなエラーが管理画面上で出るので、このファイルにも所有権を
あげないといけないのかと。プラグインに限らず、このディレクトリの所有権も
変更するように、インストール時の文書は変えたほうが良いと思いました。

セキュリティは下がってしまうので、難しいところだなと思いつつですが。