Skip to content

Instantly share code, notes, and snippets.

@j-gardner
Last active December 22, 2015 12:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save j-gardner/6475499 to your computer and use it in GitHub Desktop.
Save j-gardner/6475499 to your computer and use it in GitHub Desktop.
Modify the default box style
<?php // DO NOT include the opening php tag
add_filter( 'arconix_box_shortcode_args', 'my_box_args' );
function my_box_args( $defaults ) {
$defaults['color'] = 'blue';
return $defaults;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment