_add_template_loader_filters

函数
_add_template_loader_filters ( No parameters )

_add_template_loader_filters: 这个函数用来给WordPress模板加载器系统添加过滤器。这些过滤器允许开发者修改由WordPress加载的特定主题或插件的模板。

添加必要的过滤器,以使用’wp_template’文章而不是主题模板文件。

function _add_template_loader_filters() {
	if ( ! current_theme_supports( 'block-templates' ) ) {
		return;
	}

	$template_types = array_keys( get_default_block_template_types() );
	foreach ( $template_types as $template_type ) {
		// Skip 'embed' for now because it is not a regular template type.
		if ( 'embed' === $template_type ) {
			continue;
		}
		add_filter( str_replace( '-', '', $template_type ) . '_template', 'locate_block_template', 20, 3 );
	}

	// Request to resolve a template.
	if ( isset( $_GET['_wp-find-template'] ) ) {
		add_filter( 'pre_get_posts', '_resolve_template_for_new_post' );
	}
}

常见问题

FAQs
查看更多 >