Make WordPress Themes

Changeset 150055

Timestamp:
06/22/2021 06:31:58 PM (4 years ago)
Author:
themedropbox
Message:

New version of Lightning - 14.4.1

Location:
lightning/14.4.1
Files:
8 added
5 edited
1 copied

Legend:

Unmodified
Added
Removed
  • lightning/14.4.1/_g3/functions.php

    r148357 r150055  
    162162require dirname( __FILE__ ) . '/inc/vk-swiper/config.php';
    163163require dirname( __FILE__ ) . '/inc/ltg-g3-slider/config.php';
     164require dirname( __FILE__ ) . '/inc/vk-wp-oembed-blog-card/config.php';
    164165
    165166require dirname( __FILE__ ) . '/inc/starter-content.php';
     
    260261/*-------------------------------------------*/
    261262
    262 remove_action( 'embed_footer', 'print_embed_sharing_dialog' );
     263// ↓ 何を意図して remove_action() したのか不明なので一旦コメントアウト
     264// remove_action( 'embed_footer', 'print_embed_sharing_dialog' );
    263265
    264266function lightning_embed_styles() {
  • lightning/14.4.1/_g3/inc/layout-controller/admin-post-meta.php

    r147588 r150055  
    77// add meta_box
    88function lightning_add_design_meta_box() {
     9
     10    // 投稿トップは固定ページでなくアーカイプページ判定されるので、
     11    // 投稿トップにわりあてた固定ページで指定したカラム数は反映されない。
     12    // よって、誤解を避けるためにレイアウト設定を含む Lightningデザイン設定のmetabox自体表示しないようにする
     13    if ( isset( $_GET['post'] ) && $_GET['post'] === get_option( 'page_for_posts' ) && 'page' === get_option( 'show_on_front' ) ){
     14        return;
     15    }
    916
    1017    $args       = array(
  • lightning/14.4.1/_g3/inc/ltg-g3-slider/package/class-ltg-g3-slider.php

    r147591 r150055  
    758758                        }
    759759
    760                         if ( self::is_slide_outer_link( $i ) ) {
    761                             $slide_html .= '</a>';
    762                         }
    763 
    764760                        /*
    765761                          mini_content
     
    819815                        $slide_html .= '</div><!-- .mini-content -->';
    820816
     817                        if ( self::is_slide_outer_link( $i ) ) {
     818                            $slide_html .= '</a>';
     819                        }
     820
    821821                        $slide_html .= '</div><!-- [ /.item ] -->';
    822822
  • lightning/14.4.1/readme.txt

    r149685 r150055  
    33Lightning WordPress theme is licensed under the GPL.
    44Tested up to: 5.7.2
    5 Stable tag: 14.3.9
     5Stable tag: 14.4.1
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3939
    4040== Changelog ==
     41
     42v14.4.1
     43[ Other ] Cope with Theme Check
     44
     45v14.4.0
     46[ Specification Change ] Change blog card
     47[ Bug fix ] Fix slide button link
    4148
    4249v14.3.9
  • lightning/14.4.1/style.css

    r149685 r150055  
    66Author: Vektor,Inc.
    77Author URI: https://www.vektor-inc.co.jp
    8 Version: 14.3.9
     8Version: 14.4.1
    99Requires at least: 5.3
    1010Tested up to: 5.7.2
Note: See TracChangeset for help on using the changeset viewer.