워드프레스 이것저것 -_-
어쩌다보니 워드프레스 작업을 간간이 하는데 ㅡ.ㅡa
CSS 고칠때는
테마디자인 - Simple CSS
메뉴 고칠때는
테마디자인 - 메뉴
로 가면된다. 아 매번 까먹노 ㅠ
워드프레스 팝업창 직접 만들기 ::
https://wpguide.usefulparadigm.com/posts/1189
팝업 플러그인 없이 팝업창 띄우기 - WordPress 가이드
워드프레스 팝업창 만들기. 워드프레스에서 팝업창을 띄우는 간단한 방법을 소개합니다. 별도 팝업 플러그인 설치 없이 jQuery Modal 라이브러리를 사용하여 간단하게 내 사이트에 모달 팝업창을 추가해 나만의 팝업창을 만들어 보세요!
wpguide.usefulparadigm.com
https://stackoverflow.com/questions/40403364/how-to-enqueue-scripts-in-wordpress-from-cdn
How to enqueue scripts in WordPress from CDN?
I am trying to replicate a pen from codepen for which I have to load 3 script files from CDN and one from the server. What is the correct syntax to load the scripts from CDN? My codepen The script
stackoverflow.com
wp_register_style( 'css_jquery_modal', 'https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css' );
wp_enqueue_style('css_jquery_modal');
wp_register_script( 'js_jquery_modal', 'https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.js', null, null, true );
wp_enqueue_script('js_jquery_modal');