워드프레스 fullscreen theme
theme 사이트
http://graphpaperpress.com/themes/fullscreen/
fullscreen 테마의 커스터마이징.
fullscreen 테마의 경우 시작페이지에서 이미지들이 나오는데
이미지에 마우스오버시 title 태그 때문에 아티클의 제목이 표시되는데
이것을 없애기를 원해서 아래 파일을 수정함.
wp-theme/fullscreen/lib/images.php 에서 281라인 수정.
1 2 3 4 5 6 7 |
//원본 코드 if ( $link_to_post ) $html = '<a href="' . get_permalink( $post_id ) . '" title="' . esc_attr( get_post_field( 'post_title', $post_id ) ) . '">' . $html . '</a>'; //수정한 코드 if ( $link_to_post ) $html = '<a href="' . get_permalink( $post_id ) . '" >' . $html . '</a>'; |
You must be logged in to post a comment.