구글을 통해서 검색하니 펑션에서
add_filter( 'image_send_to_editor', 'wpdb_restore_alt_fallback', 10, 8 );
function wpdb_restore_alt_fallback( $html, $id, $caption, $title, $align, $url, $size, $alt ) {
if ( empty( $alt ) ) {
if ( ! empty( $caption ) {
$alt = $caption;
} else {
$alt = get_post_field( 'post_name', $id );
}
}
return get_image_tag( $id, $alt, $title, $align, $size );
}
이렇게 사용하면 된다고 하는데 이건 php오류라고 사용이 안되는데 자동으로 이미지에 본문타이틀값이 들어가게 하려면 어떻게 해야 하나요?
안녕하세요~^^
해당 코드 적용 시 에러가 나는 건
올려주신 코드 중 아래의 코드를
if ( ! empty( $caption )
아래의 코드로 교체해보시겠어요?
if ( ! empty( $caption ))
워드프레스 사이트에서 외부 이미지에 alt 속성 및 특성 이미지 설정하는 방법은
좋은 방법이 있을지 저희도 연구해보겠습니다.
고맙습니다.