From b6a72553aab9eaa95865b10a9afb26773ac66a1f Mon Sep 17 00:00:00 2001 From: Philip Arthur Moore Date: Tue, 25 Dec 2012 22:27:36 +0700 Subject: [PATCH] _s: Add additional Post Formats into functions.php, to be in line with WordPress.com's Instapost posting experience. --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index cc043c24..ddb0a9c3 100644 --- a/functions.php +++ b/functions.php @@ -74,7 +74,7 @@ function _s_setup() { /** * Add support for the Aside Post Formats */ - add_theme_support( 'post-formats', array( 'aside', ) ); + add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link' ) ); } endif; // _s_setup add_action( 'after_setup_theme', '_s_setup' );