특성 이미지 포스트 링크 자동 추가
페이지 정보

본문
function featured_image_with_link($html, $post_id, $post_image_id) {
$post_url = get_permalink($post_id);
$html = '<a href="' . $post_url . '">' . $html . '</a>';
return $html;
}
add_filter('post_thumbnail_html', 'featured_image_with_link', 10, 3);
$post_url = get_permalink($post_id);
$html = '<a href="' . $post_url . '">' . $html . '</a>';
return $html;
}
add_filter('post_thumbnail_html', 'featured_image_with_link', 10, 3);
- 이전글본문 내 특성이미지 제거 24.11.04
- 다음글요약글 the_excerpt(); 글자수 제한 20.10.20
댓글목록
등록된 댓글이 없습니다.