Skip to content

Instantly share code, notes, and snippets.

@tomharrigan
Created April 23, 2013 00:50
Show Gist options
  • Save tomharrigan/5439934 to your computer and use it in GitHub Desktop.
Save tomharrigan/5439934 to your computer and use it in GitHub Desktop.
add_action('woothemes_features_item_template', 'woo_features_template_order');
function woo_features_template_order ( $tpl ) {
$tpl = '<div class="%%CLASS%%"><h3 class="feature-title">%%TITLE%%</h3><div class="feature-image">%%IMAGE%%</div><div class="feature-content">%%CONTENT%%</div></div>';
return $tpl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment