Skip to content

Instantly share code, notes, and snippets.

@jameskoster
Created February 24, 2014 09:52
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 jameskoster/9184802 to your computer and use it in GitHub Desktop.
Save jameskoster/9184802 to your computer and use it in GitHub Desktop.
Sttiched - Change number of features displayed on the homepage
add_filter( 'woo_template_features_limit', 'jk_change_features_homepage' );
function jk_change_features_homepage( $features_limit ) {
if ( is_home() ) {
$features_limit = 4; // Display 4 features
}
return $features_limit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment