title: "禁用 Google 字体加载" post_status: publish comment_status: open taxonomy: category: - elementor-developers-docs post_tag: - Hooks - Src - Repos


禁用 Google 字体加载

Elementor 提供了一个特殊的过滤器钩子,允许开发者阻止 Google 字体的加载。换句话说,并非所有前端 Google 字体都会被加入队列。

钩子详情

控制 Google 字体入队

要阻止 Elementor 在前端加载 Google 字体:

/**
 * 阻止 Elementor 在前端加载 Google 字体。
 *
 * @since 1.0.0
 */
add_filter( 'elementor/frontend/print_google_fonts', '__return_false' );