Please tell me mistakes in my English.

Fixed Menu plugin update to ver.1.6.7

Add output tag ‘<div class=“fixed-menu-toggle-button”>’.
Categories hierarchy support.
thereby Can create menu with button open/close.

Add function fixed_menu_get_current_name().
This function return to class name of menu item.

Demo is this website right sitdebar.

出力タグの追加 ‘<div class=“fixed-menu-toggle-button”>’.
カテゴリーの階層をサポート。
これにより、開閉ボタンを持つメニューが作成できます。

関数の追加 fixed_menu_get_current_name()。
この関数を使用するとメニューアイテムのクラス名を得られます。

デモは本サイトのサイドバーをご覧下さい。

Thu Feb 4 2010 15:29:41 | Please tell me mistakes in my English. and Wordpress and plugin | No Comments »

Koyomi plugin for Wordpress

Download: Koyomi plugin ver.0.1.0 for Wordpress

Koyomi is a plugin that is popup message on mouse over the event-calendar plugin.
Demo: This website right sidebar event-calendar. (display Holiday and Rokuyo)

Koyomi プラグインはイベントカレンダープラグイン上に祝祭日や暦などをポップアップ表示するものです。
右サイドバーのイベントカレンダーがデモになっています。(祝祭日と六曜表示)

I send request add Koyomi plugin to Plugin Directory, but no replay…rejected? don’t care a damn.

Thu Feb 4 2010 10:24:33 | Download and Please tell me mistakes in my English. and Wordpress and plugin | No Comments »

feeeeed plugin version update to 0.3

Added option and fix.

  • After seconds to move URL
  • 時間が経過したら URL を移動する

http://wordpress.org/extend/plugins/feeeeed/

Mon Nov 2 2009 11:27:25 | Please tell me mistakes in my English. and Wordpress and plugin | No Comments »

About Counter in Sidebar widget

Placement Counter in sideber widget text.
Enable Exec-PHP plugin.

サイドバーにカウンターを設置することになったのですが、
プラグインは高機能なものが多い?ようで
簡単に適当にやりたかったので
Exec-PHP プラグインを入れた後でサイドバーウィジットのTextにサクっと?
<div class="counter">
<?php
 $log = './counter/num.txt';
 $icons = './counter/icon';

 $tag[0] = "<img src=\"" . $icons . "/c0.png\" title=\"0\" alt=\"0\">";
 $tag[1] = "<img src=\"" . $icons . "/c1.png\" title=\"1\" alt=\"1\">";
 $tag[2] = "<img src=\"" . $icons . "/c2.png\" title=\"2\" alt=\"2\">";
 $tag[3] = "<img src=\"" . $icons . "/c3.png\" title=\"3\" alt=\"3\">";
 $tag[4] = "<img src=\"" . $icons . "/c4.png\" title=\"4\" alt=\"4\">";
 $tag[5] = "<img src=\"" . $icons . "/c5.png\" title=\"5\" alt=\"5\">";
 $tag[6] = "<img src=\"" . $icons . "/c6.png\" title=\"6\" alt=\"6\">";
 $tag[7] = "<img src=\"" . $icons . "/c7.png\" title=\"7\" alt=\"7\">";
 $tag[8] = "<img src=\"" . $icons . "/c8.png\" title=\"8\" alt=\"8\">";
 $tag[9] = "<img src=\"" . $icons . "/c9.png\" title=\"9\" alt=\"9\">";

 $fh = fopen($log, 'r');    // いままでの人数を読み込む
 flock($fh, LOCK_EX); // 排他ロック
 $num = rtrim(fgets($fh));        // 総数
 fclose($fh);

 $num++;

 $fh = fopen($log, 'w');
 flock($fh, LOCK_EX); // 排他ロック
 fwrite($fh, "$num\n");
 fclose($fh);

 $n0 = sprintf("%08d", intval($num));
 $cnt = strlen($n0);
 for ($i = 0; $i < $cnt; $i++) {
 $c = substr($n0, $i, 1);
 $html .= $tag[$c];
 }
 //print $num;
 print $html;
?>
</div>

Fri Oct 16 2009 19:01:34 | Please tell me mistakes in my English. and Wordpress | No Comments »