Skip to content

Instantly share code, notes, and snippets.

@atanemani
atanemani / mrj-post-terms.php
Created January 3, 2022 16:29
Get post terms in WordPress
<?php
/* post terms */
if (!function_exists('postTerms')) {
function postTerms($taxonomy, $single = true, $linked = false)
{
global $post;
$terms = get_the_terms($post, $taxonomy);
if ($single) {
$term = reset($terms);