Attachment : 글 편집 화면에서 이미지를 업로드(첨부)
플러그인 추가하기 : Attachment 참고 사이트 : https://github.com/jchristopher/attachments/blob/master/docs/usage.md Attachment at index 0: ID: Type: Subtype: URL: Image: Source: Size: Width: Height: Title Field: Caption Field: 사용하려면 functions.php 파일에 코드를 추가 // code-block > inc_attachment.php
wordpress/플러그인
2015. 8. 13. 16:03
단축코드 만들기 예
// custom_content_bar function custom_content_bar($attr, $content = null) { $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), array(10000, 10000) ); $return_string = ''; $return_string .= ''.$content.''; $return_string .= ''; return $return_string; } // custom_content_bar_url function custom_content_bar_url($attr, $content = null) { extract(shortcode_atts(array( "src" => 'htt..
wordpress/functions.php
2015. 8. 13. 15:18
wp_get_attachment_image_src
첨부 이미지를 가져오는 역할 예)
wordpress
2015. 8. 13. 14:56