0

我在 Drupal 8 中使用 Gutenberg,我正在尝试设置默认选中的“顶部工具栏”选项。

顶部工具栏选项

我指的是格式工具栏。任何编程解决方案?我将不胜感激。谢谢。

4

3 回答 3

1

我终于找到了方法:

const isfixedToolbar = wp.data.select( 'core/edit-post' ).isFeatureActive( 'fixedToolbar' );

if ( !isfixedToolbar ) {
    wp.data.dispatch( 'core/edit-post' ).toggleFeature( 'fixedToolbar' );
}

在这里:https ://gutenbergtimes.com/block-editor-updates-for-the-wordpress-5-4-release/

在这里:https ://github.com/WordPress/gutenberg/issues/15264

于 2020-07-07T11:39:40.453 回答
0

要默认为 WordPress 修复 Gutenberg 的顶部工具栏,请将以下代码放入您的 functions.php 文件中

function jba_enable_editor_fixedToolbar_by_default() {
    $script = "window.onload = function() { const isfixedToolbar = wp.data.select( 'core/edit-post' ).isFeatureActive( 'fixedToolbar' ); if ( !isfixedToolbar ) { wp.data.dispatch( 'core/edit-post' ).toggleFeature( 'fixedToolbar' ); } }";
    wp_add_inline_script( 'wp-blocks', $script );
}
add_action( 'enqueue_block_editor_assets', 'jba_enable_editor_fixedToolbar_by_default' );
于 2020-10-14T14:26:43.197 回答
0

@ecdani 的答案对我不起作用,尽管答案在他们链接到的页面上的一个链接中。 https://jeanbaptisteaudras.com/en/2020/03/disable-block-editor-default-fullscreen-mode-in-wordpress-5-4/

将此粘贴到您的 functions.php 文件中:

function jba_disable_editor_fullscreen_by_default() {
    $script = "window.onload = function() { const isFullscreenMode = wp.data.select( 'core/edit-post' ).isFeatureActive( 'fullscreenMode' ); if ( isFullscreenMode ) { wp.data.dispatch( 'core/edit-post' ).toggleFeature( 'fullscreenMode' ); } }";
    wp_add_inline_script( 'wp-blocks', $script );
}
add_action( 'enqueue_block_editor_assets', 'jba_disable_editor_fullscreen_by_default' );
于 2020-07-29T16:13:29.433 回答