如何删除Divi Theme的移动响应?仅在wordpress中是否有桌面视图的主题?

时间:2018-01-30 15:01:34

标签: wordpress wordpress-theming

根据我的要求,我需要一个仅支持桌面视图的主题。请尽快回答。 在我现有的主题中,我从标题中删除了元视口代码,但仍然可以使用移动响应。现在该做什么。

3 个答案:

答案 0 :(得分:1)

// Remove Divi Default Viewport <meta>
function remove_divi_actions() {
remove_action( ‘wp_head’, ‘et_add_viewport_meta’ );
}
// Call ‘remove_divi_actions’ during WP initialization
add_action(‘init’,’remove_divi_actions’);

与其编辑Divi父主题功能文件,不如将其添加为片段或添加到子主题功能文件中。

答案 1 :(得分:0)

啊哈,你把一个网站卖给了一个客户并告诉他,要让它响应起来要贵一些,所以他没有采取这个选择吗?现在,您要禁用默认情况下使用主题设置的响应^^。

在functions.php中删除它

function et_add_viewport_meta(){
    echo '<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />';
}
add_action( 'wp_head', 'et_add_viewport_meta' );

您还需要删除主题上的所有css代码,这些代码是在

之后发表的
/* Responsive Styles Tablet And Below */
   remove code here ...
/* Responsive Styles 782px */
   remove code here ... 
/* Responsive Styles Smartphone Only */
   remove code here ...    
/* Responsive Styles Smartphone Portrait */
   remove code here ...    
/* Responsive Styles Tablet Portrait And Below */
   remove code here ...

请到这里按照教程: http://www.agentwp.com/disable-responsive-design-in-divi-wordpress-theme

答案 2 :(得分:0)

how to usage in code for working full destop work

If you must do it, then the process to make Divi unresponsive is following.

• Open functions.php file and delete this code,

function et_add_viewport_meta(){
    echo '<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />';
}
add_action( 'wp_head', 'et_add_viewport_meta' );