updated theme Twenty Nineteen version 1.8

This commit is contained in:
2020-12-10 10:43:51 +00:00
committed by Gitium
parent 9aa90fc14e
commit ce61d112f5
13 changed files with 274 additions and 44 deletions

View File

@ -76,6 +76,7 @@ if ( ! function_exists( 'twentynineteen_setup' ) ) :
'caption',
'script',
'style',
'navigation-widgets',
)
);
@ -174,6 +175,9 @@ if ( ! function_exists( 'twentynineteen_setup' ) ) :
// Add support for responsive embedded content.
add_theme_support( 'responsive-embeds' );
// Add support for custom line height.
add_theme_support( 'custom-line-height' );
}
endif;
add_action( 'after_setup_theme', 'twentynineteen_setup' );
@ -328,3 +332,8 @@ require get_template_directory() . '/inc/template-tags.php';
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/**
* Block Patterns.
*/
require get_template_directory() . '/inc/block-patterns.php';