Skip to content

Remove Custom Taxonomy Link

Fazle Bari edited this page Jan 3, 2021 · 2 revisions

If you created custom taxonomy and showing in table and you want to remove link then, use those code below.

if( !function_exists('wpt_remove_taxonomy_link') ){
	function wpt_remove_taxonomy_link(){
		?>
			<script>
				jQuery(document).ready(function($){
					$('.wpt_pa_color a,.wpt_pa_color a').contents().unwrap();
				});
			</script>
		<?php
	}
	add_action( 'wp_footer', 'wpt_remove_taxonomy_link' );
}

Replace wpt_pa_color classes with your own taxonomy classes.

Remove Custom Taxonomy Link image
Clone this wiki locally