Raindrops 1.354 スティッキーウィジェットエリア にバクがありましたのでお知らせします。
- Tab Area
日本語
バグの内容
トップページで、ページングがある場合、2ページ以降でもスティッキーウィジェットが表示される
Quick Fix
テンプレート sticky-widget.phpに以下のコードを追加してください。
<?php
// ここから、
global $paged;
if( isset( $paged ) && $paged > 1 ) {
return;
}
// ここまで、追加してください
$page_for_posts = get_option( 'page_for_posts' );
$page_id = get_queried_object_id();
English
The contents of the bug
At the top page, if there is a paging, sticky widget even after the second page is displayed
Quick Fix
Please add the following code to the template sticky-widget.php.
<?php
// Add from heare
global $paged;
if( isset( $paged ) && $paged > 1 ) {
return;
}
// please add Up to this point,
$page_for_posts = get_option( 'page_for_posts' );
$page_id = get_queried_object_id();