PHP 在wordpress主题中获取自定义字段值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 在wordpress主题中获取自定义字段值相关的知识,希望对你有一定的参考价值。

To be used only inside WordPress’s Loop

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

It displays the value of the custom field. Replace “custom_field_name” with the chosen name of your custom field.

To display the value outside the loop use

<?php
global $wp_query;
$postid = $wp_query->post->ID;
echo get_post_meta($postid, 'custom_field_name', true);
?>

以上是关于PHP 在wordpress主题中获取自定义字段值的主要内容,如果未能解决你的问题,请参考以下文章

PHP 在Wordpress中获取自定义字段值

PHP 调用自定义字段值(WordPress)

获取Wordpress查询中的所有类别,自定义字段值?

在创建后设置自定义选择字段的默认值(wordpress PHP jquery)

php WordPress - 从Taxonomy获取自定义字段

从 Wordpress 中自定义帖子类型的类别中获取 ACF 文本字段值