0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

ブロックテーマではブロックでwp_headにadd_actionできる

Last updated at Posted at 2022-07-08

ブロックテーマでは、基本的にすべてのページはwp-includes/template-canvas.phpをテンプレートとして表示されます。

wp-includes/template-canvas.phpは以下のような非常にシンプルなテンプレートになっています。

wp-includes/template-canvas.php
<?php
/**
 * Template canvas file to render the current 'wp_template'.
 *
 * @package WordPress
 */

/*
 * Get the template HTML.
 * This needs to run before <head> so that blocks can add scripts and styles in wp_head().
 */
$template_html = get_the_block_template_html();
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
	<meta charset="<?php bloginfo( 'charset' ); ?>" />
	<?php wp_head(); ?>
</head>

<body <?php body_class(); ?>>
<?php wp_body_open(); ?>

<?php echo $template_html; // phpcs:ignore WordPress.Security.EscapeOutput ?>

<?php wp_footer(); ?>
</body>
</html>

コードのコメントにも書かれている通り、コンテンツのレンダリングがwp_headより前に行われるため、ブロックのrender_callbackwp_headへのフックの追加ができます。

より詳しく書くと、template_redirectのタイミングでテンプレートのコードは取得され、このwp-includes/template-canvas.phpget_the_block_template_html()でブロックはレンダリングされます。

このことは、これまでプラグインやテーマカスタマイザなどによって行っていた<head>タグ内への計測タグの挿入なども、ブロックテーマではブロックで行えるということを意味します。
ブロックテーマにおいてブロックは、これまでとは違った役割に担うことになりそうです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?