没关系,我发现我可以用get_the_ID();
.
此函数将返回the_content
滤器函数只声明全局$post
对象并返回其ID。
add_filter(\'the_content\', \'wpse51205_content\')
wpse51205_content($content) {
echo $content; // Echo out post content
$PersonName = get_post_meta(get_the_ID(), \'PersonName\', true);
echo \'Person: \' . $PersonName;
}
如果您不想使用
get_the_ID()
, 您只需声明
$post
使用前对象全局:
add_filter(\'the_content\', \'wpse51205_content\')
wpse51205_content($content) {
global $post;
echo $content; // Echo out post content
$PersonName = get_post_meta($post->ID), \'PersonName\', true);
echo \'Person: \' . $PersonName;
}