我有一個WordPress的定製和Divi的問題。 Customizer在Divi激活時工作正常,但是當我激活一個兒童主題時,定製程序突然停止工作。它顯示在面向用戶的一面,但不會在定製器中呈現。Divi兒童主題打破Wordpress定製程序
我得到這個錯誤從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');
?>
我看到這個錯誤在控制檯:
負載scripts.php C = 1個&負載[] =的jQuery -core,jQuery的遷移和jQuery UI的核心是,jQuery UI的小部件,jQuery的UI-MO ...:3 GET http://bpmmarketing.com/?customize_changeset_uuid=9610c2a0-37d1-4b5a-abd6-d ... ccfb7c & customize_theme = BPM +營銷& customize_messenger_channel =預覽0 net :: ERR_TOO_MANY_REDIRECTS
我們現在保護網站,但如果您需要任何其他信息,請讓我知道。
您是否覺得這個網站是? https://wordpress.org/support/topic/err_too_many_redirects-12/。 討論導致WP中可能存在的錯誤。調整永久鏈接結構似乎可以阻止錯誤 - 具體來說,確保永久鏈接完全是小寫。 – mikerose
迷人。普通永久鏈接確實修復了定製程序。這麼奇怪。仍然不是一個永久的解決方案,但你去。 – PeterG