Skip to content

Instantly share code, notes, and snippets.

@shazdeh
Created November 19, 2013 14:15
Show Gist options
  • Save shazdeh/7546005 to your computer and use it in GitHub Desktop.
Save shazdeh/7546005 to your computer and use it in GitHub Desktop.
Custom tile sizes (Metro)
<?php
function register_custom_tile_size( $args ) {
$args[4]['options'][0]['meta'][] = array( 'value' => 'custom', 'img' => 'images/layout-icons/tile-custom.png', 'title' => __( 'Custom', 'themify' ) );
return $args;
}
add_filter( 'themify_do_metaboxes', 'register_custom_tile_size' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment