切换实际模板文件的方式与上面使用的方式相同get_template_part()
.
例如
<?php
if ( wp_is_mobile() ) { // If it is a mobile device
get_template_part( \'mobile-front\', \'page\' );
} else { // If it is not a mobile device
get_template_part( \'desktop-front\', \'page\' );
} // end wp_is_mobile()
更进一步。。。
您可以在上添加筛选器template_include
要加载特定的模板文件,请使用wp_is_mobile()
确定要加载的模板文件。
The Codex info for template_include
.