JointsWPそのままやったら、floatとかなってたんで、検索したら、
Configuring FlexBox/FlexGrid in JointsWP | Foundation Forum from ZURB
これで動いた
JointsWPそのままやったら、floatとかなってたんで、検索したら、
Configuring FlexBox/FlexGrid in JointsWP | Foundation Forum from ZURB
これで動いた
もうほぼ、下記のリンク先
【WordPress】 子テーマを使ったカスタマイズについて(functions.php編)
functions.phpはstyle.cssとは実行順序が違って、子テーマが先で親テーマがあとみたい。
だもんで、
関数リファレンス/add action – WordPress Codex 日本語版
ここの
add_action( $hook, $function_to_add, $priority, $accepted_args );
Twenty Seventeen で フロントページのテーマオプションのセクション
デフォルトだと4つ
もっと使いたいんだよねーって検索検索
ありましたー
How to Add Extra Twenty Seventeen Theme Front Page Sections – WPColt
自分の書き方に合わせて
//フロントページ テーマオプションのセクションの数を設定 add_filter( 'twentyseventeen_front_page_sections', 'wpc_custom_front_sections' ); function wpc_custom_front_sections( $num_sections ) { return 7; //Change this number to change the number of the sections. }