본문 바로가기

IT

워드프레스 Newspaper 테마에서 tagdiv 비디오 REST API 파싱하기

 

 

안녕하세요!! 휴!! 드디어 작업 완료! 

 

워드프레스 테마를 사용해서 사이트를 만들었는데 tagdiv의 경우 rest api 값으로 자동으로 나오지는 않았습니다.

여러가지 검색과 chat gpt를 이용해서 코드를 작성하니까 해당 부분이 나와서 다른 플랫폼에 적용할 수 있었어요~

 

functions.php에 추가

function add_featured_video_to_rest() {
  register_rest_field('post', 'featured_video', array(
        'get_callback'    => 'get_featured_video',
        'update_callback' => null,
        'schema'          => null,
     )
  );
}
add_action('rest_api_init', 'add_featured_video_to_rest');

function get_featured_video($object, $field_name, $request) {
  $td_post_video = get_post_meta($object['id'], 'td_post_video', true);
  $td_video_url = is_array($td_post_video) && isset($td_post_video['td_video']) ? $td_post_video['td_video'] : '';
  return array('td_video' => $td_video_url);
}