自分用のコードメモです。
固定ページのコンテンツを他のページにまるまる表示させた時の掲載方法
※ショートコード[outline]で呼び出す場合
function getoutline() {
$page_id = 10;//ページID
$post = get_post($post_id, 'OBJECT' , 'edit');
$post_include = apply_filters( 'the_content',$post->post_content);
return $post_include; }
add_shortcode('outline', 'getoutline');
※echo $post->post_content;は使わない方がいいらしいです。
参考にしたブログのみなさま
ありがとうございます。ありがとうございます。
コメントを残す