覆盖儿童主题中二十一六的菜单断点

时间:2016-08-31 作者:Will

我目前正在研究一个儿童主题,父母是216岁。

当前在函数中。js文件为2616,它有一个910的断点,正常菜单停止,菜单切换按钮显示。

我需要将此宽度减少到810,但不确定如何做到这一点。很明显,我不想触及216个主题文件。

1 个回复
最合适的回答,由SO网友:CodeMascot 整理而成

复制js 父文件夹TwentySixteen 主题到子主题根。然后将以下代码添加到functions.php-

function the_dramatist_dequeue_scripts() {
    wp_dequeue_script( \'twentysixteen-script\' );
    wp_deregister_script( \'twentysixteen-script\' );
}
add_action( \'wp_print_scripts\', \'the_dramatist_dequeue_scripts\' );

function the_dramatist_twentysixteen_scripts() {
    wp_enqueue_script( \'twentysixteen-child-script\', get_stylesheet_directory_uri() . \'/js/functions.js\', array( \'jquery\' ), null, true );
}
add_action( \'wp_enqueue_scripts\', \'the_dramatist_twentysixteen_scripts\' );
然后在你的孩子主题中js 文件夹(之前复制的文件夹)查找functions.js 归档并进行更改。它将为您提供所需的输出。