我正在使用这个Wordpress Metabox框架:http://www.deluxeblogtips.com/p/meta-box-script-for-wordpress.html
这是代码
array(
'name' => '<strong>Robots Meta</strong>',
'desc' => '',
'id' => $prefix . 'robot',
'type' => 'radio',
'options' => array(
'if' => 'index, follow',
'in' => 'index, nofollow',
'nf' => 'noindex, follow',
'nn' => 'noindex, nofollow'
),
),
如何调用模板中每个无线电值的值?
我试过这样做,但它只会检查它是否已设置:
$metas = get_post_meta(get_the_ID(), 'hiro_robot', false);
foreach ($metas as $meta) {
echo $meta;
}
if (in_array($val, $metas)) {
echo "$val is set";
} else {
echo "$val is not set";
}
答案 0 :(得分:0)
在这里我自己想出来了,这里是这样的:
$meta = get_post_meta(get_the_ID(), 'hiro_robot', true);
if (is_page() || is_single() && $meta == 'if')
echo '<meta name="robots" content="index,follow" />'."\n";
elseif (is_page() || is_single() && $meta == 'in')
echo '<meta name="robots" content="index,nofollow" />'."\n";
elseif (is_page() || is_single() && $meta == 'nf')
echo '<meta name="robots" content="noindex,follow" />'."\n";
elseif (is_page() || is_single() && $meta == 'nn')
echo '<meta name="robots" content="noindex,nofollow" />'."\n";
答案 1 :(得分:0)
我喜欢使用短辅助函数来获取元值。
function c3m_get_field($key, $echo = FALSE) {
global $post;
$custom_field = get_post_meta($post->ID, $key, true);
if ($echo == FALSE) return $custom_field;
echo $custom_field;
}
当您想要回显meta键的值时,可以使用它:
c3m_get_field('key', TRUE);
如果要返回值:
c3m_get_field('key', FALSE);
同样在您的回答中,您不需要使用get_the_ID()
功能,只需使用$post->ID