通常のやり方の場合
function my_lightning_site_footer_before() {
$page_id = '*****'; // 表示したい固定ページのページID
$post = get_post( $page_id );
echo apply_filters( 'the_content', $post->post_content );
}
add_action( 'lightning_site_footer_before', 'my_lightning_site_footer_before' );
で効きますが、 the_content フィルターはプラグインでごにょごにょしているものもあるので、例えばExUnitのシェアボタンがそこにも表示されたりします。
ので、以下のように一旦解除して再度フィルターを追加するような処理になります。
function my_lightning_site_footer_before() {
// シェアボタンのフィルターを一旦外す
remove_filter( 'the_content', 'veu_add_sns_btns', 200, 1 );
// 関連記事のフィルターを一旦外す
remove_filter( 'the_content', 'veu_add_related_posts_html', 800, 1 );
// FollowMeのフィルターを一旦外す
remove_filter( 'the_content', 'veu_add_follow' );
// 著者情報のフィルターを一旦外す
remove_filter( 'the_content', 'pad_add_author' );
$page_id = '13150'; // 表示したい固定ページのページID
$post = get_post( $page_id );
echo apply_filters( 'the_content', $post->post_content );
// 再びシェアボタンのフィルター処理を追加する
add_filter( 'the_content', 'veu_add_sns_btns', 200, 1 );
// 再び関連記事のフィルター処理を追加する
add_filter( 'the_content', 'veu_add_related_posts_html', 800, 1 );
// 再びFollowMeのフィルター処理を追加する
add_filter( 'the_content', 'veu_add_follow' );
// 再び著者情報のフィルター処理を追加する
add_filter( 'the_content', 'pad_add_author' );
}
add_action( 'lightning_site_footer_before', 'my_lightning_site_footer_before' );
が、この他にもフィルターでごにょごにょされてその影響を受けるかもしれないので注意が必要です。