4

我想调整古腾堡编辑器以适应我网站的外观,并将我的网络字体用于各种块元素。我一直在查看插件的各种文件夹/CSS 文件,但没有发现任何有用的东西。编辑器的字体定义在哪里?

谢谢你们!

大卫

4

1 回答 1

4

我不知道是否有官方方式,但您可以为此创建一个小插件(准确地说,是没有块的古腾堡块编辑器资产)。

  1. 在 /wp-content/plugins 中创建一个名为gutenbergfontchanger(或更好的名称)的文件夹

  2. 添加一个 PHP 文件,其名称gutenbergfontchanger.php与此类似:

<?php
/*
Plugin Name: gutenbergfontchanger
*/

if (!function_exists('gutenbergfontchanger_editor_assets')) {
    function gutenbergfontchanger_editor_assets()
    {
        wp_enqueue_style(
            'gutenbergfontchanger-editor-style',
            plugins_url('editor.css', __FILE__),
            filemtime(plugin_dir_path(__FILE__) . 'editor.css')
        );
    }

    add_action('enqueue_block_editor_assets', 'gutenbergfontchanger_editor_assets');
}
  1. 添加一个名为的 CSS 文件editor.css,其中包含您的字体样式:
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,600');

.editor-styles-wrapper, .editor-post-title__input {
  font-family: 'Source Sans Pro', sans-serif !important;
}
  1. 激活 WordPress 后端中的插件。
于 2019-01-25T13:25:46.400 回答