予告 Raindrops 1.277

Raindrops 1.277 より

RTL( Right-to-left writing )言語をサポートします。

スタイルシートのデフォルト設定を変更します。

version1.256 で 外部ファイル化したスタイルシートを、head 要素内にインラインで書きだすよう変更します。

この変更は、パフォーマンス(応答スピード)の向上を目的に行われます。

パフォーマンス問題の詳細について


$raindrops_stylesheet_typeの値を、external に変更していただけば、従来通り動作します。

/**
 * Style sheet setting html head embed inline-style or external link
 * value external ( default ) or embed
 * @since 1.277
 */
if ( ! isset( $raindrops_stylesheet_type ) ) {
	$raindrops_stylesheet_type = 'embed';
}

ヘッダー画像の表示に関するメンテナンスを行います

従来、レスポンシブレイアウトでサイトを表示した時に、ヘッダー画像が、2段階に表示されていましたが、この問題に関するメンテナンスを行います。

この変更により、ヘッダー画像のサイズが、レスポンシブレイアウトの最大幅よりも大幅に小さい場合にヘッダー画像の高さが、異なって表示されることがあります。

そのような場合、以下のフィルタを利用して、修正することが出来ます

add_filter( 'raindrops_header_image_height', 'my_raindrops_header_image_height' );

function my_raindrops_header_image_height( $height ) {
	
	return 'Your value';
}

可能であれば、レスポンシブレイアウトの最大幅の画像を準備していただけますようお願いします。

Raindrops 1.277

I will support the RTL (Right-to-left writing) language

I will change the default settings of the style sheet.

the style sheet you external file of at version1.256, to change so that it begins to write inline in the head element.

This change is done in order to improve the performance (response speed)

About performance ( lang japanese )

the value of the $raindrops_stylesheet_type, if away – to change to external, will work as usual.

add_filter( 'raindrops_header_image_height', 'my_raindrops_header_image_height' );

function my_raindrops_header_image_height( $height ) {
	
	return 'Your value';
}

I will do the maintenance on the display of the header image

when you view the site in Responsive layout, header image, but had been displayed on the second stage, do the maintenance on this issue.

As a result of this change, the size of the header image is, the height of the header image in the case significantly less than the maximum width of Responsive layout, you may see it differently

In such a case, by using the following filter, you can modify

add_filter( 'raindrops_header_image_height', 'my_raindrops_header_image_height' );

function my_raindrops_header_image_height( $height ) {
	
	return 'Your value';
}

If possible, you will be able to prepare the image of maximum width of Responsive layout as you please.


コメントは受け付けていません。