복붙노트

[WORDPRESS] 어떻게 워드 프레스 플러그인에서 페이지의 헤드 섹션에 메타 데이터를 추가 할 수 있습니까?

WORDPRESS

어떻게 워드 프레스 플러그인에서 페이지의 헤드 섹션에 메타 데이터를 추가 할 수 있습니까?

해결법


  1. 1.예는 다음과 같이 wp_head하는 액션 후크를 추가 할 수 있습니다 :

    예는 다음과 같이 wp_head하는 액션 후크를 추가 할 수 있습니다 :

    add_action('wp_head', myCallbackToAddMeta);
    function myCallbacktoAddMeta(){
      echo "\t<meta name='keywords' content='$contents' />\n";
    }
    
  2. from https://stackoverflow.com/questions/5805888/how-can-i-add-meta-data-to-the-head-section-of-the-page-from-a-wordpress-plugin by cc-by-sa and MIT license