A Happy New Year
あけましておめでとうございます
–Version 1.154 of raindrops is now live.
Raindrops 1.154がライブになりました
Raindropsテーマは、一般公式テーマとして世界ではじめて accessibility-readyタグの利用が認められました
A Happy New Year
あけましておめでとうございます
–Version 1.154 of raindrops is now live.
Raindrops 1.154がライブになりました
Raindropsテーマは、一般公式テーマとして世界ではじめて accessibility-readyタグの利用が認められました
Raindrops 1.147 has Bug.
Warning: Missing argument 2 for add_action(), called in /wordpress/wp-content/themes/raindrops/lib/option-panel.php on line 587 and defined in /wordpress/wp-includes/plugin.php on line 333
*Quick Fix
Please open lib / option-panel.php
function raindrops_SubMenu_GUI() { add_action ( 'raindrops_SubMenu_GUI_pre' );
Please change below ( Change from add_action to do_action )
function raindrops_SubMenu_GUI() { do_action ( 'raindrops_SubMenu_GUI_pre' );
This bug will be fixed next version.
Raindrops 1.147でバグが見つかりました。
lib/option-panel.phpの585行目上記のコードを参考に、修正いただけますようお願いします。
なをこのバグは、次回のバージョンで修正させていただきます。
–Version 1.147 of raindrops is now live.
Raindrops 1.147がライブになりました 新しいRaindropsをお楽しみください
-詳しくは、Raindrops1.147の新機能をご覧ください
Raindropsテーマで、Basic Google Maps Placemarks plugin を使用した場合に、プレースマークアイコンが表示できないという不具合がありました。
–@see
style.css line:283
pre, .hfeed div, input, textarea{ max-width:100%; }
を、以下のように
pre, .hfeed > div, input, textarea{ max-width:100%; }
変更する事で、アイコンが表示できるようになりました。
このバグは、Raindrops1.148で修正予定です。
今回の変更は、WordPress coding standard 適合のための、コーディングの全面的な変更、より安全性の高いテーマのアップロード機構への改善です。
newがつく期間の設定は、以下のフィルタでカスタマイズ可能です
3day change 7day add_filter( 'raindrops_new_period', 'my_new_period' ); function my_new_period( $day ) { return 7; }
Add action hooks all templates do_action( 'raindrops_pre_'.basename( __FILE__) ); do_action( 'raindrops_after_'.basename( __FILE__) ); Add action hooks all template part files do_action( 'raindrops_pre_part_'. basename( __FILE__, '.php' ). '_'. basename( $template ) ); do_action( 'raindrops_after_part_'. basename( __FILE__, '.php' ). '_'. basename( $template ) );
Remove function raindrops_get_month() Remove function &raindrops_raiseError()
–Version 1.138 of raindrops is now live.
新しいRaindropsをお楽しみください
do_action( 'raindrops_include_after' ); do_action( 'raindrops_last' );
RAINDROPS_USE_AUTO_COLOR == false
を設定した場合に、テーマ編集のヘルプタブ表示を行う raindrops_edit_help()関数でエラーが発生するバグを修正しました