forked from mirror/_s
Merge pull request #419 from kovshenin/master
_s: Add HTML5 support for WordPress galleries.
This commit is contained in:
commit
5de96cdb72
|
@ -55,7 +55,12 @@ function _s_setup() {
|
|||
) ) );
|
||||
|
||||
// Enable support for HTML5 markup.
|
||||
add_theme_support( 'html5', array( 'comment-list', 'search-form', 'comment-form', ) );
|
||||
add_theme_support( 'html5', array(
|
||||
'comment-list',
|
||||
'search-form',
|
||||
'comment-form',
|
||||
'gallery',
|
||||
) );
|
||||
}
|
||||
endif; // _s_setup
|
||||
add_action( 'after_setup_theme', '_s_setup' );
|
||||
|
|
Reference in New Issue