wordpress可以用html5嗎
wordpress是可以用html5的,可以為WordPress開啟 HTML5 支援。 WordPress 也可以透過在 header.php 檔案中添加這段程式碼的方法來實現。或使用functions.php 檔案也可以:
找到目前主題對應的functions.php 文件,並加入以下程式碼:
function add_ie_html5_shim () { echo ''; } add_action('wp_head', 'add_ie_html5_shim');
原理是透過header.php 檔案中的wp_head() 函數強行插入。
wordpress呼叫html5檔案
就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的支援了,這個需要自行修改,沒有什麼便捷的方法。
更多WordPress技術文章,請造訪WordPress教學專欄!
以上是wordpress可以用html5嗎的詳細內容。更多資訊請關注PHP中文網其他相關文章!