get_the_content( $more_link_text, $stripteaser )
get_the_content
不将帖子ID作为参数,它始终引用当前帖子。
此外,不要在主题中使用幻数或硬编码post-id,它会在导入/导出或迁移后中断。
而是使用get_page_by_title
, 也没那么糟糕:
// get the post
$post = get_page_by_title(\'page or post title\', OBJECT, \'post\' );
// filter its content
$content = apply_filter(\'the_content\', $post->post_content );
// display it
echo $content;