我在wordpress定制器和Divi上遇到问题。只需激活Divi,Customizer即可正常工作,但是当我激活子主题时,Customer突然停止工作。它显示在面向用户的一侧,但不会在定制器中呈现。
我从Chrome收到此错误:
“ bpmmarketing.com将您重定向了太多次。”
因此,我当然要确保我的功能文件是洁净的。
这是代码(来自优雅的主题):
<?php
function my_theme_enqueue_styles() {
$parent_style = 'parent-style';
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array( $parent_style ),
wp_get_theme()->get( 'Version' )
);
}
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
?>
我在控制台中看到此错误:
load-scripts.php?c = 1&load [] = jquery-core,jquery-migrate,jquery-ui-core,jquery-ui-widget,jquery-ui-mo ...:3
得到
http://bpmmarketing.com/?customize_changeset_uuid=9610c2a0-37d1-4b5a-abd6-d…ccfb7c&customize_theme = BPM + Marketing&customize_messenger_channel =预览0
净:: ERR_TOO_MANY_REDIRECTS
我们的网站目前受到保护,但如果您需要其他任何信息,请告诉我。
最佳答案
您的主题文件夹可能包含空格,例如“ Divi child”。如果是这样,您必须将其更改为“ Divi-child”并解决问题。
如果不是这样,您可以将永久链接设置为“普通”作为解决方法,但这对SEO不利。