Skip to content

Instantly share code, notes, and snippets.

@bhubbard
Last active February 25, 2016 04:50
Show Gist options
  • Save bhubbard/7e0d8d477e2a484c0436 to your computer and use it in GitHub Desktop.
Save bhubbard/7e0d8d477e2a484c0436 to your computer and use it in GitHub Desktop.
Limit Tags Per Post
<?php
//* Limit tags to three per post...
add_filter( 'term_links-post_tag', 'wpdevco_limit_post_tags' );
function wpdevco_limit_post_tags( $terms ) {
return array_slice( $terms, 0, 3, true );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment