From 9e4730ec0c62f51447595294ddbc4a2ef5f803fb Mon Sep 17 00:00:00 2001 From: Troy Chaplin Date: Mon, 21 Oct 2024 06:14:28 -0400 Subject: [PATCH] add: aside, chat, status post formats --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index a15d0ebf..b8bd4cdd 100644 --- a/functions.php +++ b/functions.php @@ -19,7 +19,7 @@ * @return void */ function twentytwentyfive_post_format_setup() { - add_theme_support( 'post-formats', array( 'audio', 'gallery', 'image', 'link', 'quote', 'video' ) ); + add_theme_support( 'post-formats', array( 'aside', 'audio', 'chat', 'gallery', 'image', 'link', 'quote', 'status', 'video' ) ); } endif; add_action( 'after_setup_theme', 'twentytwentyfive_post_format_setup' );