Skip to content

Instantly share code, notes, and snippets.

@jameskoster
Last active August 29, 2015 13:56
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/9184818 to your computer and use it in GitHub Desktop.
Save jameskoster/9184818 to your computer and use it in GitHub Desktop.
Sttiched - change the number of team members displayed on the homepage
add_filter( 'woo_template_our_team_limit', 'jk_change_our_team_homepage' );
function jk_change_our_team_homepage( $team_limit ) {
if ( is_home() ) {
$team_limit = 8; // Display 8 team members
}
return $team_limit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment