Странная ситуация со скриптом для создания эффекта кладки в блоге моего клиента WP. Внезапно, я получаю эту ошибку на всех страницах, которые используют скрипт кладки:
Warning: Use of undefined constant CHILD_THEME_VERSION - assumed 'CHILD_THEME_VERSION' (this will throw an Error in a future version of PHP) in /home/customer/www/writtenpalette.com/public_html/wp-content/themes/writpall/masonry.php on line 12
Так что это часть этого PHP кода прямо внизу:
add_action( 'wp_enqueue_scripts', 'jmd_masonry_script' );
function jmd_masonry_script() {
if (is_home() || is_archive()) {
wp_enqueue_script( 'masonry-init', get_stylesheet_directory_uri().'/js/masonry-init.js' , array( 'jquery-masonry' ), '1.0', true );
wp_enqueue_style( 'masonry-styles', get_stylesheet_directory_uri() . '/style-masonry.css', array(), CHILD_THEME_VERSION );
}
}
Есть идеи, как это исправить?