FEATURE handling theme support for page excerpt

This commit is contained in:
Antoine M 2025-11-27 09:19:34 +01:00
parent fdbb03c904
commit 70f53cea2b

View File

@ -35,8 +35,11 @@ function carhop_setup()
add_theme_support('wp-block-styles');
add_theme_support('editor-styles');
add_editor_style('css/editor-style.css');
add_theme_support('widgets');
add_editor_style('css/editor-style.css');
add_post_type_support('page', 'excerpt');
// add_post_type_support( 'page', 'excerpt' );
}