This commit is contained in:
David A. Kennedy 2017-06-26 16:06:15 -04:00
commit f756b98df3
1 changed files with 8 additions and 8 deletions

View File

@ -27,14 +27,14 @@ function _s_jetpack_setup() {
// Add theme support for Content Options. // Add theme support for Content Options.
add_theme_support( 'jetpack-content-options', array( add_theme_support( 'jetpack-content-options', array(
'post-details' => array( 'post-details' => array(
'stylesheet' => '_s-style', 'stylesheet' => '_s-style',
'date' => '.posted-on', 'date' => '.posted-on',
'categories' => '.cat-links', 'categories' => '.cat-links',
'tags' => '.tags-links', 'tags' => '.tags-links',
'author' => '.byline', 'author' => '.byline',
'comment' => '.comments-link', 'comment' => '.comments-link',
), ),
) ); ) );
} }
add_action( 'after_setup_theme', '_s_jetpack_setup' ); add_action( 'after_setup_theme', '_s_jetpack_setup' );