From c71baced9696a5b23b660179c5e51c7e8fc1c801 Mon Sep 17 00:00:00 2001 From: Ulrich Pogson Date: Mon, 26 Jun 2017 22:06:01 +0200 Subject: [PATCH] Correct code indention (#1135) --- inc/jetpack.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/inc/jetpack.php b/inc/jetpack.php index 02554987..fda2615b 100644 --- a/inc/jetpack.php +++ b/inc/jetpack.php @@ -27,14 +27,14 @@ function _s_jetpack_setup() { // Add theme support for Content Options. add_theme_support( 'jetpack-content-options', array( - 'post-details' => array( - 'stylesheet' => '_s-style', - 'date' => '.posted-on', - 'categories' => '.cat-links', - 'tags' => '.tags-links', - 'author' => '.byline', - 'comment' => '.comments-link', - ), + 'post-details' => array( + 'stylesheet' => '_s-style', + 'date' => '.posted-on', + 'categories' => '.cat-links', + 'tags' => '.tags-links', + 'author' => '.byline', + 'comment' => '.comments-link', + ), ) ); } add_action( 'after_setup_theme', '_s_jetpack_setup' );