浏览代码

Enqueue Google fonts in the editor. See #708

alaczek 6 年之前
父节点
当前提交
2abf680460
共有 1 个文件被更改,包括 13 次插入0 次删除
  1. 13 0
      elegant-business/functions.php

+ 13 - 0
elegant-business/functions.php

@@ -112,6 +112,19 @@ function elegant_business_scripts() {
 }
 add_action( 'wp_enqueue_scripts', 'elegant_business_scripts', 99 );
 
+/**
+ * Enqueue supplemental block editor scripts.
+ */
+function elegant_business_block_editor_scripts() {
+
+	/**
+	 * Styles
+	 */
+	wp_enqueue_style( 'elegant-business-fonts', elegant_business_fonts_url(), array(), null );
+}
+add_action( 'enqueue_block_editor_assets', 'elegant_business_block_editor_scripts' );
+
+
 /**
  * Load extras.php file (if necessary).
  */