日期:2015-04-27 阅读:1788
dmandwp系统 - wordpress系统和DM系统区块建站>>
https://codex.wordpress.org/Theme_Markup
Theme Markup is a theme feature, first introduced in Version 3.6. This feature allows themes to explicitly choose to apply HTML5 markup for search forms, comment forms, comment lists, gallery, caption and widgets.
wordpress主题标记是一个主题特色,主题标记允许在search forms, comment forms, comment lists, gallery, caption and widgets等里,使用html5标记。
在function.php:
$args = array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
'widgets'
);
add_theme_support( 'html5', $args );
-----------------