上传时Wordpress功能图像限制

时间:2016-04-28 18:23:54

标签: wordpress image upload thumbnails restriction

我在用户上传要素图片时尝试添加限制。我尝试在function.php文件中使用此功能,但它为用户和管理员的所有上传图像添加了限制。

NSAttributedString

}

如何更改此功能以仅获取要素图像的大小或我必须使用哪种过滤器?

1 个答案:

答案 0 :(得分:0)

add_filter( 'post_thumbnail_html', 'my_post_image_html', 10, 3 );
function my_post_image_html( $html, $post_id, $post_image_id ) {
   $html = '<a href="'.get_permalink($post_id).'"title="'.esc_attr(get_the_title( $post_id )).'">'.$html.'</a>';
   return $html;
}

可能会有所帮助。