Created
July 18, 2015 21:40
-
-
Save mikejolley/902b8cb1ed2ba886ff4e to your computer and use it in GitHub Desktop.
Limit tags
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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