Quantcast
Channel: WordPress Snippet
Viewing all articles
Browse latest Browse all 129

ブロックエディタ 利用できるエディタを制限

$
0
0

フィルターを使用することで、ブロックエディタで、HTMLモードだけを利用できたり、HTMLモードは使用できなくしたり、ディレクトリー検索を無効にすることができます。

function snippet_custom_editor_settings( $settings, $post ) {
    $settings['richEditingEnabled'] = false;
     
    return $settings;
}
add_filter( 'block_editor_settings', 'snippet_custom_editor_settings', 10, 2 );

block_editor_settings| Hook| WordPress Developer Resources

ブロックディレクトリ検索を停止

add_action(
	'plugins_loaded',
	function() {
		remove_action( 'enqueue_block_editor_assets', 'wp_enqueue_editor_block_directory_assets' );
		remove_action( 'enqueue_block_editor_assets', 'gutenberg_enqueue_block_editor_assets_block_directory' );
	}
);

gutenberg/editor-filters.md at 6ddbcbdb0383ccc13d17ae4f72f933a9bccce069 · WordPress/gutenberg


Viewing all articles
Browse latest Browse all 129

Trending Articles