在WordPress中显示循环外的自定义字段
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在WordPress中显示循环外的自定义字段相关的知识,希望对你有一定的参考价值。
<?php global $wp_query; $postid = $wp_query->post->ID; echo get_post_meta($postid, 'Your-Custom-Field', true); wp_reset_query(); ?>
以上是关于在WordPress中显示循环外的自定义字段的主要内容,如果未能解决你的问题,请参考以下文章