render single page with featured image

This commit is contained in:
Jonas Heinrich 2020-04-04 11:07:55 +02:00
parent ac4751718e
commit cf3478f2d1
2 changed files with 959 additions and 0 deletions

View file

@ -4,6 +4,7 @@ function kit_setup() {
register_nav_menus( array(
'primary' => esc_html__( 'Footer Menu', 'kit' ),
) );
add_theme_support( 'post-thumbnails' );
};
add_action( 'after_setup_theme', 'kit_setup' );