Search
 
SCRIPT & CODE EXAMPLE
 

PHP

powerpack add custom image size

if ( function_exists( 'add_image_size' ) ) {
	add_image_size( 'video-gallery', 300, 169, true );
	add_image_size( 'full-panoramica', 1920, 650, true );
}

add_filter( 'image_size_names_choose', 'insert_custom_image_sizes' );
function insert_custom_image_sizes( $sizes ) {
	global $_wp_additional_image_sizes;
	if ( empty($_wp_additional_image_sizes) )
		return $sizes;

	foreach ( $_wp_additional_image_sizes as $id => $data ) {
		if ( !isset($sizes[$id]) )
			$sizes[$id] = ucfirst( str_replace( '-', ' ', $id ) );
	}

	return $sizes;
}
Comment

PREVIOUS NEXT
Code Example
Php :: codeigniter round off function 
Php :: laravel collection flip 
Php :: array.diff solution 
Php :: How do I test a website using XAMPP? 
Php :: verta sample jalali laravel problem return object 
Php :: how to search locations in php using ajax google script 
Php :: stop php execution with javascript 
Php :: ajax php example 
Php :: laravel pdf generator 
Php :: nodejs php 
Php :: lowercase in array php 
Php :: what is is_null in php 
Php :: laravel model bind with route in model 
Php :: laravel authentication 
Php :: change email to username laravel login 
Php :: strings functions php 
Php :: loop through object php 
Php :: how to save array of inputs in php 
Php :: add method to laravel blade 
Java :: spigot execute command as console 
Java :: how to get current date time in android 
Java :: android copy text to clipboard programmatically 
Java :: Junit 5 console input test 
Java :: will my java minecraft be discontinued 
Java :: javafx tableview remove all rows 
Java :: how to get the width and height of a string in java 
Java :: spigot how to make an inventory 
Java :: int array to set in java 
Java :: how to measure the running time of a code section in java? 
Java :: android studio edittext text change listener 
ADD CONTENT
Topic
Content
Source link
Name
8+9 =