Advertisement
Guest User

Untitled

a guest
Feb 21st, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <?php
  2. /**
  3. * Adds new responsive ad unit sizes to the selectable options when creating an ad
  4. */
  5. function example_adsanity_ad_sizes( $sizes = array() ) {
  6.  
  7. $sizes['1x3'] = __( '1x3 - Responsive', 'example' );
  8. $sizes['2x3'] = __( '2x3 - Responsive', 'example' );
  9.  
  10. return $sizes;
  11.  
  12. }
  13.  
  14. add_filter( 'adsanity_ad_sizes', 'example_adsanity_ad_sizes' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement