Skip to content

Instantly share code, notes, and snippets.

@htdat
Created September 27, 2017 05: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 htdat/620b318e86921c85c2afd774c94d87b5 to your computer and use it in GitHub Desktop.
Save htdat/620b318e86921c85c2afd774c94d87b5 to your computer and use it in GitHub Desktop.
WP Job Manager - Change the number of tags displaying in the job listing page
add_filter ('job_filter_tag_cloud', 'htdat_job_filter_tag_cloud');
function htdat_job_filter_tag_cloud ( $atts ) {
// Change this to your own number
$atts['number'] = 100;
return $atts;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment