我创建了一个名为animal
还有一个术语元字段horse
.
我在函数中创建了一个函数。php文件,以便于显示数据。
这是我的代码:
function regular_info_page() {
$terms = get_the_terms($post->ID, \'animal\');
$result = "";
if (is_array($terms) || is_object($terms)){
foreach ($terms as $term) {
$term_id = $term->term_id;
$result .= get_term_meta( $term_id,
\'horse\', true );
}
}
return $result;
}
元字段
horse
保存一个链接,我想在我的页面上显示该链接,但它不是打开链接,而是重新加载当前页面。
以下是我在页面上放置的代码:
<p><a href="<?php regular_info_page(); ?>">For more info on this Bracha, click here.</a></p>
有什么想法吗?