获取wordpress主题中的自定义字段值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取wordpress主题中的自定义字段值相关的知识,希望对你有一定的参考价值。
get custom fields value in wordpress theme
To be used only inside WordPress’s Loop 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); ?>
以上是关于获取wordpress主题中的自定义字段值的主要内容,如果未能解决你的问题,请参考以下文章
根据 Wordpress 中的自定义字段值批量重写帖子 slug
Wordpress:以正确的语言获取自定义字段值 (WPML)