Skip to content

Instantly share code, notes, and snippets.

@jameskoster
Created May 28, 2014 10: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 jameskoster/596124b891d411f96078 to your computer and use it in GitHub Desktop.
Save jameskoster/596124b891d411f96078 to your computer and use it in GitHub Desktop.
Projects - change number of project per row
add_filter( 'projects_loop_columns', 'jk_projects_columns' );
function jk_projects_columns( $columns ) {
$columns = 3;
return $columns;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment