Skip to content

Instantly share code, notes, and snippets.

@jameskoster
Last active February 9, 2017 23:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jameskoster/9888621 to your computer and use it in GitHub Desktop.
Save jameskoster/9888621 to your computer and use it in GitHub Desktop.
Projects - Change number of project columns on archives
add_filter( 'projects_loop_columns', 'jk_projects_columns', 99 );
function jk_projects_columns( $cols ) {
$cols = 3;
return $cols;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment