Guest User

Untitled

a guest
Jul 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2. /**
  3. * Update the featured images size from Astra
  4. */
  5. add_filter( 'astra_post_thumbnail_default_size', 'update_featured_images_size_callback' );
  6.  
  7. function update_featured_images_size_callback( $size ) {
  8. $size = array( 500, 500 ); // Update the 500(Width), 500(Height) as per your requirment.
  9. return $size;
  10. }
Add Comment
Please, Sign In to add comment