在我的WordPress主题目录中,我有一个名为image的独立PHP文件,目前看起来像这样。。。。
<?php
define(\'WP_USE_THEMES\', false);
require(\'/home/mysite/public_html/wp-blog-header.php\');
?>
<?php
global $post;
$post_id = 288;
$header_image = get_post_custom_values(\'caption\', $post_id);
echo get_post_meta($post_id, \'caption\', true);
?>
当我访问此网站时,我希望它返回“caption”的自定义字段值,但我什么也没有得到。我意识到这个页面在循环之外,但我想我已经包含了wp博客标题。它需要的php。有人能帮忙吗?