본문 바로가기
Study/Wordpress

shortcode 값 넘겨받기

by ooyu 2022. 7. 25.

워드프레스에서 shortcode 이름을 작성한다.

한칸 뛴 후 값을 넘겨 준다.

[shortcode_name test='1111']

 

shortcode function에서 넘겨받은 test에 대한 정의를 내린다.

shortcode로 작성한 test가 값을 넘겨주는 부분이라는 선언부 같다.

아래와 같이 선언한 후 $test로 function에서 값을 사용할 수 있다.

extract(shortcode_atts(array(
    'test' => 1,
), $attr));

 

댓글