如何获取短代码缩略图大小?
我的代码在函数中获取短代码缩略图大小:
function thumb_medium( $atts, $content = null ) {
return wp_get_attachment_url( get_post_thumbnail_id( $post_id, \'medium\') );
//or wp_get_attachment_url( get_post_thumbnail_id( $post_id, \'large\') );
//or wp_get_attachment_url( get_post_thumbnail_id( $post_id, array(100,100)) );
}
add_shortcode("get_urlthumb", "thumb_medium");
但[get\\u urlthumb]始终将完整url缩略图作为:wp-content/uploads/2015/08/origin-image-upload.jpg
谢谢