当我需要获取ID为的帖子内容时,我总是使用此功能:
function getContentByID($id)
{
//http://wordpress.stackexchange.com/questions/9667/get-wordpress-post-content-by-post-id
$content_post = get_post($id);
$content = $content_post->post_content;
$content = apply_filters(\'the_content\', $content);
$content = str_replace(\']]>\', \']]>\', $content);
return $content;
}
你能告诉我,为什么这个没有任何核心功能吗?有像get\\u the\\u title($id)、get\\u the\\u category($id)这样的函数。。。