Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rocket-martue/b38fcc0788e049e479f4f6b0fc14bc2d to your computer and use it in GitHub Desktop.
Save rocket-martue/b38fcc0788e049e479f4f6b0fc14bc2d to your computer and use it in GitHub Desktop.
Snow Monkey で、フック (snow_monkey_append_main) を使ってページ下部に再利用ブロックを表示する。
add_action(
'snow_monkey_append_main',
function() {
$reuse_block = get_post( $id ); // $id は、再利用ブロックのID
echo apply_filters( 'the_content', $reuse_block->post_content );
}
);
@rocket-martue
Copy link
Author

$id は、再利用可能ブロックの管理ページを開き、編集画面に入ると、URLの中にIDがある。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment