PHP Wordpress中的自定义字段

Posted

tags:

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

// Syntax for custom field call //

<?php get_post_meta($post_id, '$key', $single); ?>


// 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 :) //

<p class="whatever"><?php echo  get_post_meta($post->ID, 'customPower', true); ?></p>

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

PHP 在WordPress中显示循环外的自定义字段

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

Wordpress中的自定义字段

WordPress 和高级自定义字段管理,仪表板中的自定义列

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

PHP wordpress中的自定义菜单