10
get_template_part에 변수 전달
WP 코덱스는 말한다 이렇게 : // You wish to make $my_var available to the template part at `content-part.php` set_query_var( 'my_var', $my_var ); get_template_part( 'content', 'part' ); 그러나 echo $my_var템플릿 부분 내부는 어떻게합니까 ? get_query_var($my_var)나를 위해 작동하지 않습니다. locate_template대신 사용에 대한 수많은 권장 사항을 보았습니다 . 그게 가장 좋은 방법입니까?