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

Posted

tags:

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

get custom fields value in wordpress theme
  1. To be used only inside WordPress’s Loop
  2.  
  3. <?php echo get_post_meta($post->ID, 'custom_field_name', true); ?>
  4.  
  5. It displays the value of the custom field. Replace “custom_field_name” with the chosen name of your custom field.
  6.  
  7. To display the value outside the loop use
  8.  
  9. <?php
  10. global $wp_query;
  11. $postid = $wp_query->post->ID;
  12. echo get_post_meta($postid, 'custom_field_name', true);
  13. ?>

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

根据 Wordpress 中的自定义字段值批量重写帖子 slug

Wordpress:以正确的语言获取自定义字段值 (WPML)

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

WordPress中的自定义表单并将值存储到自定义数据库中

小部件标题未显示在我的自定义 WordPress 主题中

Wordpress 导航栏中的自定义简码