篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Max Mega菜单WordPress插件 - 在Divi WordPress主题上相关的知识,希望对你有一定的参考价值。
//* Fix Divi Fullwidth Menu module when using Max Mega Menu
or
//* Remove Max Mega Menu from Divi Fullwidth Menu
add_filter('et_fullwidth_menu_args', 'jennywren_remove_theme_location');
function jennywren_remove_theme_location($args) {
if ( isset( $args['theme_location'] ) ) {
unset( $args['theme_location'] );
}
return $args;
}
以上是关于php Max Mega菜单WordPress插件 - 在Divi WordPress主题上的主要内容,如果未能解决你的问题,请参考以下文章