很明显,您知道当前页面/帖子id。因为加载了任何模板文件,所以查询会获取帖子、页面、术语或任何其他内容的数据。
要将信息添加到标记中,您应该使用wp_head
钩下面是一个示例-
add_action(\'wp_head\', \'wpse_wp_head\');
function wpse_wp_head(){
// first make sure this is a single post/page
if( !is_page() || !is_single() )
return;
// then get the post data
$post = get_post();
echo \'<meta name="post_id" value="\'. $post->ID .\'" />\';
$author = get_user_option(\'display_name\', $post->post_author );
echo \'<meta name="author" value="\'. esc_attr( $author ) .\'" />\';
}