Slide 17
Slide 17 text
// Mythic starter theme から抜粋
// https://github.com/justintadlock/mythic/blob/master/app/functions-
setup.php
add_action( 'after_setup_theme', function() {
add_theme_support( 'align-wide' );
// 省略 ...
} );
add_action( 'init', function() {
register_nav_menus( [
'primary' -> 'Primary',
// 省略 ...
] );
} );
add_action( 'init', function() {
set_post_thumnail_size( 178, 100, true );
add_image_size( 'mythic-medium', 750, 422, true );
// 省略 ...
} );