Skip to content

Inline JS and CSS in WordPress for Backend and Gutenberg

Disable „stick to the top of the blog“ and „pending review“ in Gutenberg sidebar

//hide stick to the top of the blog checkbox
function inline_custom_admin_style() {
echo '<style>
.editor-post-author__panel {
        margin-top:-50px !important;
    }
.post-author-selector{background: white;}
</style>';
}
add_action('admin_head', 'inline_custom_admin_style');

Via

Set the „top toolbar“ option in gutenberg by default

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' );

Via

Dieser Beitrag hat 0 Kommentare

Schreibe einen Kommentar

Deine E-Mail wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert

An den Anfang scrollen