A PHP snippet for Limit Tags to 3 per Post.
//* Limit tags to three per post...
add_filter( 'term_links-post_tag', 'flstudio_limit_post_tags' );
function flstudio_limit_post_tags( $terms ) {
return array_slice( $terms, 0, 3, true );
} A PHP snippet for Limit Tags to 3 per Post.
A PHP snippet for Limit Tags to 3 per Post.
//* Limit tags to three per post...
add_filter( 'term_links-post_tag', 'flstudio_limit_post_tags' );
function flstudio_limit_post_tags( $terms ) {
return array_slice( $terms, 0, 3, true );
}