Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the smart-custom-fields domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/siennahare23/www/wp-lesson/wp-includes/functions.php on line 6114

Deprecated: Using ${var} in strings is deprecated, use {$var} instead in /home/siennahare23/www/wp-lesson/wp-content/plugins/smart-custom-fields/classes/fields/class.field-datetime-picker.php on line 79

Deprecated: Using ${var} in strings is deprecated, use {$var} instead in /home/siennahare23/www/wp-lesson/wp-content/plugins/smart-custom-fields/classes/fields/class.field-datetime-picker.php on line 80

Deprecated: Using ${var} in strings is deprecated, use {$var} instead in /home/siennahare23/www/wp-lesson/wp-content/plugins/smart-custom-fields/classes/fields/class.field-datetime-picker.php on line 114

Deprecated: Using ${var} in strings is deprecated, use {$var} instead in /home/siennahare23/www/wp-lesson/wp-content/plugins/smart-custom-fields/classes/fields/class.field-datetime-picker.php on line 115

Notice: 関数 _load_textdomain_just_in_time が誤って呼び出されました。twentyseventeen ドメインの翻訳の読み込みが早すぎました。これは通常、プラグインまたはテーマの一部のコードが早すぎるタイミングで実行されていることを示しています。翻訳は init アクション以降で読み込む必要があります。 詳しくは WordPress のデバッグをご覧ください。 (このメッセージはバージョン 6.7.0 で追加されました) in /home/siennahare23/www/wp-lesson/wp-includes/functions.php on line 6114
twenty seventeen フロントページカスタム – wp-lesson

子テーマのsingle.phpです

twenty seventeen フロントページカスタム

子テーマ作成

フロントページで読み込まれているfront-page.phpを編集

親テーマのfront-page.phpを子テーマのディレクトリに複製

不要な部分をコメントアウト

<?php
	// // Show the selected front page content.
	// if ( have_posts() ) :
	// 	while ( have_posts() ) :
	// 		the_post();
	// 		get_template_part( 'template-parts/page/content', 'front-page' );
	// 	endwhile;
	// else :
	// 	get_template_part( 'template-parts/post/content', 'none' );
	// endif;
?>

<?php
	// // Get each of our panels and show the post data.
	// if ( 0 !== twentyseventeen_panel_count() || is_customize_preview() ) : // If we have pages to show.

	// 	/**
	// 	 * Filters the number of front page sections in Twenty Seventeen.
	// 	 *
	// 	 * @since Twenty Seventeen 1.0
	// 	 *
	// 	 * @global int|string $twentyseventeencounter Front page section counter.
	// 	 *
	// 	 * @param int $num_sections Number of front page sections.
	// 	 */
	// 	$num_sections = apply_filters( 'twentyseventeen_front_page_sections', 4 );
	// 	global $twentyseventeencounter;

	// // Create a setting and control for each of the sections available in the theme.
	// 	for ( $i = 1; $i < ( 1 + $num_sections ); $i++ ) {
	// 		$twentyseventeencounter = $i;
	// 		twentyseventeen_front_page_section( null, $i );
	// 	}

	// endif; // The if ( 0 !== twentyseventeen_panel_count() ) ends here.
?>

get_template_part();で作成したファイルを読み込む

<?php get_template_part('my-front-page'); ?>

cssの読み込み

wp_enqueue_style( 'home-style', get_stylesheet_directory_uri() . '/home-style.css');

get_stylesheet_directory_uri()で取得

<ブログで紹介されている方法>

get_stylesheet_uri();だとstyle.cssまで取得してしまい上手くスタイルシートの読み込みができないのだが、、