2013-05-27 38 views
0

我目前正在使用Wordpress網站,當用戶在移動設備上看到它時,我想爲頁面使用不同的模板。例如,我有一個名爲Proyects的頁面,該頁面使用模板gallery.php,但是如果有人在移動設備中看到它,那麼相同的頁面Proyects將使用模板gallery_mobile.php。我不知道是否你把它放在模板(即page.php)或functions.php中。Wordpress重定向移動設備的頁面模板

在此先感謝!

回答

2

要檢查用於移動應用的wp_is_mobile,來執行重定向,掛鉤到template_redirect

function so16778006_mobile_redirect() 
{ 
    if(is_page('proyects') && wp_is_mobile()) 
    { 
     include(get_template_directory() . '/gallery_mobile.php'); 
     exit(); 
    } 
} 
add_action('template_redirect', 'so16778006_mobile_redirect');