Skip to content

Commit

Permalink
[ 仕様変更 ] ウィジェットを子テーマで上書き出来るように変更
Browse files Browse the repository at this point in the history
  • Loading branch information
kurudrive committed Oct 9, 2018
1 parent 5488c71 commit c72351e
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions functions.php
Expand Up @@ -15,6 +15,8 @@
/*-------------------------------------------*/
/* Load Custom template tags for this theme.
/*-------------------------------------------*/
/* Load widgets
/*-------------------------------------------*/
/* Load designskin manager
/*-------------------------------------------*/
/* Load tga(Plugin install)
Expand Down Expand Up @@ -141,14 +143,18 @@ function lightning_css() {
require get_parent_theme_file_path( '/inc/customize/customize.php' );
require get_parent_theme_file_path( '/inc/customize/customize-design.php' );
require get_parent_theme_file_path( '/inc/customize/customize-top-slide.php' );
require get_parent_theme_file_path( 'inc/widgets/widget-full-wide-title.php' );
require get_parent_theme_file_path( 'inc/widgets/widget-new-posts.php' );

/*-------------------------------------------*/
/* Load Custom template tags for this theme.
/*-------------------------------------------*/
require get_parent_theme_file_path( '/inc/template-tags.php' );

/*-------------------------------------------*/
/* Load widgets
/*-------------------------------------------*/
get_template_part( 'inc/widgets/widget-full-wide-title' );
get_template_part( 'inc/widgets/widget-new-posts' );

/*-------------------------------------------*/
/* Load designskin manager
/*-------------------------------------------*/
Expand Down

0 comments on commit c72351e

Please sign in to comment.