削除する前にメモとして残しておくもの。あとからググり直すの、面倒だしね。自分のブログ内に置いとくよ。
INDEX
テンプレートから個別ページの内容を表示
<?php $page_info = get_page_by_path('ad-top'); $page = get_post($page_info); echo $page->post_content; ?>
ショートコードでテンプレ文を呼び出し
<?php // functions.php function template1() { $html = <<<EOS テンプレ文 EOS; return $html; } add_shortcode('template1', 'template1'); ?>
<!-- 記事本文 -->
[template1]