From e537859f0fd3c8b7847edef037871dff629b337a Mon Sep 17 00:00:00 2001 From: Adam Wood <1017872+adamwoodnz@users.noreply.github.com> Date: Mon, 20 Nov 2023 10:02:32 +1300 Subject: [PATCH] Load dashicons font on frontend Required for /about/stats page and others Fixes https://github.com/WordPress/wporg-main-2022/issues/354 --- source/wp-content/themes/wporg-main-2022/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/wp-content/themes/wporg-main-2022/functions.php b/source/wp-content/themes/wporg-main-2022/functions.php index 72ae61d0..fae44b66 100644 --- a/source/wp-content/themes/wporg-main-2022/functions.php +++ b/source/wp-content/themes/wporg-main-2022/functions.php @@ -35,7 +35,7 @@ function enqueue_assets() { wp_enqueue_style( 'wporg-main-2022-style', get_stylesheet_directory_uri() . '/build/style/style-index.css', - array( 'wporg-parent-2021-style', 'wporg-global-fonts' ), + array( 'wporg-parent-2021-style', 'wporg-global-fonts', 'dashicons' ), filemtime( __DIR__ . '/build/style/style-index.css' ) ); wp_style_add_data( 'wporg-main-2022-style', 'rtl', 'replace' );