Filter to remove hyperlinks from all tags in posts

WPTurbo » Snippets » Filter to remove hyperlinks from all tags in posts
0

Created with:

Visibility: 

public

Creator: Myriam

Customize with WPTurbo AI
X

Add Snippet To Project

New Project
Add To Existing Project
					<?php
function wpturbo_remove_tag_links( $tag_links ) {
    // Remove hyperlinks from all tags
    $tags = array();
    foreach ( $tag_links as $tag_link ) {
        $tags[] = preg_replace( '/<a.*?>(.*?)</a>/', '1', $tag_link );
    }
    // Return tag text without hyperlink
    return $tags;
}
add_filter( 'term_links-post_tag', 'wpturbo_remove_tag_links' );
				

Explanation:

Register an account to save your snippets or go Pro to get more features.