1
이것은 내가 WP 2014 테마 결과로보고 싶은 것입니다 내 아이의 테마 코드 : 또한변경 헤더 배경 14 개의
jQuery(document).ready(function($){
jQuery(window).bind('scroll', function($) {
var distance = 50;
if ($(window).scrollTop() > distance) {
$('header').addClass('scrolled');
}
else {
$('header').removeClass('scrolled');
}
});
});
.scrolled {
background: #bada55;
}
, I
function my_custommenu_tf_child() {
\t if (!is_admin()) {
\t if (is_front_page()) {
\t wp_enqueue_script('my_Custommenu', get_stylesheet_directory_uri() . '/js/mycustommenu.js', '', '1.0', true);
\t }
\t }
}
add_action('wp_enqueue_scripts', 'my_custommenu_tf_child');
가 정말 전문 개발자 아니에요 그래서 대신 내가 경우 감사하겠습니다 가능한 해결책을 참조 ... 작동하지 않았다 : 자식 테마 내 functions.php에 다음 dded 정확한 코드를 삽입하여 정확히 무엇이 잘못되었는지 비교하고 비교할 수 있습니다. 감사!
당신의 functions.php에서 그것을하지 연결 functions.php에 링크되어 있습니까? 세부 사항/코드를 제공 할 수 있습니까? – Dan
여기 코드 (코드 포함)가 모두 설명되어 있습니다. https://codex.wordpress.org/Child_Themes – Arkej
사용자 정의 CSS를 추가하는 더 쉬운 방법은이 플러그인을 사용하는 것입니다. https://pl.wordpress.org/plugins/simple -custom-css/ – Arkej