Raindrops 1.446 更新概要
RAINDROPS_TABLE_TITLE,RAINDROPS_PLUGIN_TABLE定数を次のバージョンで削除するため、今回のバージョンでコメントアウトしました。
front-page.php テンプレートに動的なCSSを追加しました
フィルター raindrops_excerpt_conditional を追加しました
フィルター raindrops_link_pdf_filter を追加しました。
日本語PDFファイルのリンクで、リンク文字列をデコードして可読できるように変更しました。
Commentout raindrops_non_breaking_content フィルターをコメントアウトしました。次のバージョンで削除予定です
カスタマイザーの基本設定リンクをクリックした場合アラートダイアログが出てしまう問題を修正しました
アドミンカラーの配色調整を行いました。
ビデオヘッダーを表示した場合にタグラインをクリックするとメインコンテンツに移動するリンクの移動量の調整を行いました。
カテゴリーページで、概要文の表示を、2ページ目以降は非表示とする設定に変更しました
固定フロントページを使用した場合、indexページで概要文を表示する設定になっていると固定フロントページも概要文表示になる問題を修正しました。
固定フロントページで概要を表示する場合は、
add_filter('raindrops_excerpt_conditional','trimming_front_page_excerpt'); function trimming_front_page_excerpt($excerpt){ if( is_front_page() ) { return true; } return $excerpt; }
とする事で対応できます。
version: 1.446 Overview of Changes
Code Cleaning
Commentout RAINDROPS_TABLE_TITLE,RAINDROPS_PLUGIN_TABLE
Next version remove.
Modified Dinamic Style for front-page.php template.
Modified raindrops_link_url_text_decode()
Filter Add raindrops_excerpt_conditional
Filter Add raindrops_link_pdf_filter
Filter Commentout raindrops_non_breaking_content
Next version remove.
Modified Customize link
from customize.php?autofocus[panel]=raindrops_theme_settings_presentation_panel
to javascript:wp.customize.panel( \’raindrops_theme_settings_presentation_panel\’ ).focus();
Modified Admin Color
Modified When Video header tagline linked to main contents link offset.
Modified Category ,Tag description only shows page top,(when paged hide).
Fixed bug when Static Front Page displayed excerpt.