Wordpress中的自定义字段

Posted

tags:

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

  1. // Syntax for custom field call //
  2.  
  3. <?php get_post_meta($post_id, '$key', $single); ?>
  4.  
  5.  
  6. // Example, First set Custom Field in "Create Post" or use "Custom Field Template"-Plugin. In this case I create the field "CustomPower". Then call the field via get_post_meta. Easy :) //
  7.  
  8. <p class="whatever"><?php echo get_post_meta($post->ID, 'customPower', true); ?></p>

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

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

Wordpress中的自定义字段

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

Wordpress 中带有前缀的自定义字段的自定义简码

PHP 使用循环外的自定义字段自定义Wordpress查询

无法显示来自 Wordpress REST API 自定义端点的自定义字段