This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function primary_taxonomy_list($taxonomy, $post_id = 0, $delimiter = ', ') { | |
if(empty($post_id)) { | |
global $post; | |
if(!empty($post)) $post_id = $post->ID; | |
else return ''; | |
} | |
$primary = ''; | |
if ( defined('WPSEO_VERSION') ) { | |
$seo_terms = new WPSEO_Primary_Term($taxonomy, $post_id); |