wordpress如何调用html5文件
1个回答
展开全部
就WP核心来说,只需要在下面的HOOK
after_setup_theme
的函数内添加如下代码:
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support( 'html5', array(
'search-form', 'comment-form', 'comment-list', 'gallery', 'caption'
) );
如果没有找到挂到上面HOOK的函数,需要在functions.php中添加:
add_action( 'after_setup_theme', 'suoling_net_after_theme_setup' );
function suoling_net_after_theme_setup(){
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support( 'html5', array(
'search-form', 'comment-form', 'comment-list', 'gallery', 'caption'
) );
}
插件的HTML输出一般都是符合HTML5标准的;此外,就是主题对HTML5的支持了,这个需要自行修改,没有什么便捷的方法。
不了解再问,祝愉快!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询