Skip to Content
Frontlane Studio
All Snippets
PHP WordPress January 30, 2023

Limit Tags to 3 per Post

A PHP snippet for Limit Tags to 3 per Post.

WordPress PHP

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 );
}