「マンション」タグアーカイブ
新築、築浅、中古マンション
// 親テーマのCSSを読み込む add_action('wp_enqueue_scripts', function() { wp_enqueue_style('parent-style', get_template_directory_uri() . '/style.css'); }); // フッターにテスト出力 add_action('wp_footer', function() { echo ''; }); // 子テーマのCSSを読み込む function mansionstyle_enqueue_styles() { wp_enqueue_style( 'child-style', get_stylesheet_uri() ); } add_action( 'wp_enqueue_scripts', 'mansionstyle_enqueue_styles' );
新築、築浅、中古マンション