Child theme`s functions.php editing .
-
Hi there. Can someone give a litle help to a coding noobie?) In mother theme functions.php file I have this code:
// Thumbnail sizes
add_image_size( ‘thumb-small’, 160, 160, true);
add_image_size( ‘thumb-standard’, 320, 320, true);
add_image_size( ‘thumb-medium’, 520, 245, true );
add_image_size( ‘thumb-large’, 720, 340, true );In _child_ theme I need replace it by this :
// Thumbnail sizes
add_image_size( ‘thumb-small’, 160, 160);
add_image_size( ‘thumb-standard’, 320, 320);
add_image_size( ‘thumb-medium’, 520, 245);
add_image_size( ‘thumb-large’, 720, 340);
It means just without “true”. I read manual on this site, but as I said, I am just noobie and didn`t understand anyway.
I understand thats a trivial question, sorry about that.
- The topic ‘Child theme`s functions.php editing .’ is closed to new replies.