Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created July 18, 2015 21:40
Show Gist options
  • Save mikejolley/902b8cb1ed2ba886ff4e to your computer and use it in GitHub Desktop.
Save mikejolley/902b8cb1ed2ba886ff4e to your computer and use it in GitHub Desktop.
Limit tags
add_filter( 'job_filter_tag_cloud', 'custom_job_filter_tag_cloud' );
function custom_job_filter_tag_cloud( $atts ) {
$atts['number'] = 5;
return $atts;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment