본문 바로가기
반응형

web/wordpress16

워드프레스 에러 웹페이지에 출력하기 워드프레스의 에러를 웹페이지에 출력하는 방법을 알아보자. 상용 서버에 배포하는 경우 웹페이지에 에러를 노출해서는 안된다. 하지만 개발 단계에서는 디버깅 편리를 위해서 노출로 설정해야한다. 출력 안함 설정 위치 : /wp-config.php 안함 설정 표시 안함으로 설정하면 내용 확인이 불가하다. 표시 설정 표시하기로 설정하면 내용 확인이 가능하다. 2023. 5. 11.
wordpress 테마 생성 로컬 개발환경에서 wordpress 테마 생성하는 방법을 알아보자. 1. 테마 폴더 생성 - 위치 : wp-content > themes > 폴더 생성 2. css 파일 추가 - 테마 폴더에 style.css 추가 - 주석 추가 /* Theme Name: Account Book Theme URI: https://wordpress.org/themes/twentytwentythree Author: dingaking Author URI: https://web.todaycoding.com Description: Account Book is designed to take advantage of the new design tools introduced in WordPress 6.1. With a clean, bla.. 2023. 5. 11.
워드프레스 소스 로컬 설치 워드프레스 소스 로컬 설치 방법에 대해서 알아봅니다. 로컬에 php 개발환경 설정 먼저 php 개발환경이 설치되어있어야 합니다. 안되어있다면 아래 자료를 이용해주세요. php development environment on macos 1. "download xampp"로 검색 구글에서 "download xampp"로 검색 후 첫번째 링크 클릭 2. OSX용 XAMPP 최신버전 다운로드 클릭을 누르면 잠시 후 다운로드가 시작됩니다. 3. 더블 클릭시 오류 발생 설치를 위해 web.todaycoding.com 워드프레스 공식 사이트 Blog Tool, Publishing Platform, and CMS - WordPress.org Open source software which you can use to e.. 2023. 5. 11.
[wordpress] plugin Activation/Deactivation/Uninstall hook 워드프레스 플러그인 제작시 필수로 알아야할 활성화/비활성화/삭제 구현 방법입니다. Activation Activation 후크를 설정하려면 register_activation_hook() 함수를 사용합니다. /** * Register the "book" custom post type */ function pluginprefix_setup_post_type() { register_post_type( 'book', ['public' => true ] ); } add_action( 'init', 'pluginprefix_setup_post_type' ); /** * Activate the plugin. */ function pluginprefix_activate() { // Trigger our functio.. 2023. 5. 7.
반응형