Wordpress回显某个自定义字段

时间:2014-04-28 17:16:40

标签: php wordpress custom-fields

我正在尝试回显名为“Price”的特定自定义字段。

我试过了

 <?php echo get_post_meta($post->ID, 'Price', true); ?>

我如何回应价格字段?

3 个答案:

答案 0 :(得分:1)

尝试使用以下方式回显post meta:

global $post;    
echo get_post_meta($post->ID, 'Price', true);

答案 1 :(得分:1)

首先,您必须在变量中获取有关Wordpress当前帖子的信息。为此,您可以使用:

global $post;

这将获得变量 $ post 的所有帖子信息。

你可以调用你的函数,它应该可以工作:

echo get_post_meta($post->ID, 'Price', true);

价格应该是该帖子的元属性。

答案 2 :(得分:1)

可以是,发布ID

echo get_post_meta(get_the_ID(), 'Price', true);

此外,您应该在循环中使用它。