在wordpress页面的主要内容区域,我使用php include添加一些脚本。
在include脚本中,我可以使用_meta()显示自定义字段值。
但是我需要使用特定自定义字段中的值,所以我尝试了这个
get_post_meta(post->ID, 'myfield', true);
遗憾的是,无法找到post-gt; ID。
如何从php include中添加的脚本中获取自定义字段的值?
答案 0 :(得分:0)
如果你在循环中(意味着你将文件包含在wordpress后循环中),你可以使用它:
$postID = get_the_ID();
$metaValues = get_post_meta($postID, 'myfield', true);