본문 바로가기
반응형

web24

워드프레스 테마의 타이틀 설정 워드프레스 테마의 타이틀 설정을 위해서는 after_setup_theme 액션 태그를 이용한다. theme/functions.php add_action('after_setup_theme', function(){ add_theme_support( 'title-tag' ); }); 공식 문서의 설명을 보면 This hook is called during each page load, after the theme is initialized. It is generally used to perform basic setup, registration, and init actions for a theme. 이 후크는 테마가 초기화된 후 각 페이지 로드 중에 호출됩니다. 일반적으로 테마에 대한 기본 설정, 등록 및 초기화.. 2023. 5. 17.
워드프레스 관리자 메뉴 추가 워드프레스 관리자 메뉴 추가는 add_menu_page, add_submenu_page(필요시) 함수를 admin_menu 액션 태그에 등록하면 된다. theme/functions.php $title = '가계부'; function my_menu_render() { global $title; ?> My New Menu Page!! My New Sub Menu Page!! 2023. 5. 17.
[크롬] 캐시 비활성화 편집기에서 css를 수정했으나 사이트에 반영이 안되는 경우가 있다. 이때는 캐시 비활성화를 시도해보자. 개발자 도구 보기 옵션 > 도구 더보기 > 개발자 도구 캐시 비활성화 2023. 5. 17.
워드프레스 기본 style.css load하기 워드프레스 테마의 기본 style.css load하는 방법 설정 wp_enqueue_style 함수를 wp_enqueue_scripts 액션 태그에 등록한다. 파라미터 'account-style' : id값에 사용, 접미사(-css) 추가됨, 아래 이미지 참조 get_stylesheet_uri() : 테마의 기본 스타일 시트 주소 전체 소스 theme/functions.php add_action('wp_enqueue_scripts', function() { wp_enqueue_style('account-style', get_stylesheet_uri()); }); 참고로 wp_enqueue_scripts 액션 태그는 js도 로드할 수 있다. wp_enqueue_scripts는 아래와 같이 css(wp_e.. 2023. 5. 17.
반응형