Deprecated: Function seems_utf8 is deprecated since version 6.9.0! Use wp_is_valid_utf8() instead. in /home/dplugins-code/htdocs/code.dplugins.com/wp-includes/functions.php on line 6131

Deprecated: Function seems_utf8 is deprecated since version 6.9.0! Use wp_is_valid_utf8() instead. in /home/dplugins-code/htdocs/code.dplugins.com/wp-includes/functions.php on line 6131
Output taxonomy terms as links with limit – Code DPlugins

Output taxonomy terms as links with limit

<?php
$all_tax_data = get_terms(
	array(
		'taxonomy' => 'YOUR-TAXONOMY',
		'hide_empty' => false,
		'number' => 4
	)
);

foreach($all_tax_data as $custom_term){
        $custom_term_name = $custom_term->name;
        $custom_term_link = get_term_link($custom_term->term_id);

	echo '<a href="'.$custom_term_link.'">
	'.$custom_term_name.'
	</a>';
}
Click to Copy