我想出来了!
使用这段代码,我可以使用我的自定义元字段作为音频短代码中的链接。
首先,我在functions中创建了一个函数。php:
function audio_link() {
$terms = get_the_terms($post->ID, \'taxonomy-name\');
$result = "";
if (is_array($terms) || is_object($terms)){
foreach ($terms as $term) {
$term_id = $term->term_id;
$result .= get_term_meta( $term_id,
\'term-meta-field-name\', true );
}
}
return $result;
}
然后,我将函数插入到短代码中,如下所示:
<?php echo do_shortcode(\'[audio src="\'. audio_link() .\'"]\');?>
希望这能帮助其他人解决这个问题!