php 将自定义WP图像大小添加到“媒体库设置”
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 将自定义WP图像大小添加到“媒体库设置”相关的知识,希望对你有一定的参考价值。
function dl_custom_image_sizes_add_settings($sizes) {
//unset( $sizes['thumbnail']); //uncomment to remove size if needed
//unset( $sizes['medium']);// uncomment to remove size if needed
//unset( $sizes['large']);// uncomment to restore size if needed
//unset( $sizes['full'] ); // uncomment to remove size if needed
$mynewimgsizes = array(
"your-custom-size_name-1" => __( "Name_to_display1" ),
"your-custom-size_name-2" => __( "Name_to_display2" ),
"your-custom-size_name-3" => __( "Name_to_display3" )
);
$newimgsizes = array_merge($sizes, $mynewimgsizes);
return $newimgsizes;
}
add_filter('image_size_names_choose', 'dl_custom_image_sizes_add_settings');
以上是关于php 将自定义WP图像大小添加到“媒体库设置”的主要内容,如果未能解决你的问题,请参考以下文章
如何将自定义彩色图像添加到 TabBarController 中的 tabBar?
Wordpress:将自定义 ID 添加到 wp_nav_menu 中的最终 li
如何将自定义图像添加到按钮 (dojo 1.7)
将自定义图像 UIButtons 添加到自定义 UIToolbar 无法正常工作
如何将自定义图像添加到按钮(dojo 1.7)
iPhone Mapkit 将自定义图像和引脚添加到注释中