Created
November 19, 2013 14:15
-
-
Save shazdeh/7546005 to your computer and use it in GitHub Desktop.
Custom tile sizes (Metro)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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