개발 공부 기록

워드프레스 개발 지식 정리 1 본문

개발/기타

워드프레스 개발 지식 정리 1

_김도연 2023. 11. 8. 14:01

기초 개념

- funtions.php : 워드프레스가 기본으로 include 하는 php 파일

- register_post_type : 새 포스트 타입을 등록하는 함수

- add_action : 특정 순간에 함수를 실행할 수 있도록 시점과 함수를 주입하는 함수

https://developer.wordpress.org/reference/functions/register_post_type/

 

WordPress Developer Resources | Official WordPress Developer Resources

Official WordPress developer resources including a code reference, handbooks (for APIs, plugin and theme development, block editor), and more.

developer.wordpress.org

- have_posts : $wp_post에서 더 표시할 post가 있는지 검사. 있으면 true, 없으면 false 리턴

- the_post : template tag를 사용할 수 있게 $wp_post의 현재 post를 세팅. 현재 포스트를 한 칸 뒤로 이동한다.

 

 

메뉴에 사용가능한 아이콘 모음

https://developer.wordpress.org/resource/dashicons/#pets

 

WordPress Developer Resources | Official WordPress Developer Resources

Official WordPress developer resources including a code reference, handbooks (for APIs, plugin and theme development, block editor), and more.

developer.wordpress.org

 

싱글 페이지

- post, custom post type : single.php

- page : page.php

- 둘다 : singular.php

 

Taxonomy

- 카테고리, 태그 등을 추가할 때 사용하는 개념

- 등록 순서에 따라 목록의 컬럼 순서가 정해짐

 

Metabox

- post 편집 화면에서 한 영역을 뜻하는 용어.

- html의 필드셋 개념으로 생각하면 됨. 필드를 추가할 때 사용

- add_meta_boxes

- add_meta_boxes_{post-type}

 

'개발 > 기타' 카테고리의 다른 글

워드프레스 개발 공부 기록3  (0) 2023.11.09
[Mac] Mac 꾸미기 - Run Cat  (0) 2021.12.06
7월 읽을만한 글  (0) 2021.07.06
모노레포와 러나  (0) 2021.06.27
[기초] 브라우저 호환성과 빌드 환경(Webpack)  (0) 2020.09.21
Comments