Update wording of setting

Better reflects what it does since this affects not only default blocks but plugins as well.
This commit is contained in:
Tetrakern 2023-03-13 11:10:38 +01:00
parent 9b3d6cbf22
commit 49d52a1777
2 changed files with 3 additions and 3 deletions

View File

@ -754,7 +754,7 @@ Common problems and how to avoid/fix them.
### Missing Blocks
This is not an error but intentional, the theme only allows blocks that are properly integrated. But you can enable the rest under **Fictioneer > General > Compatibility > Enable all default Gutenberg blocks**. There is no guarantee they will work or look good.
This is not an error but intentional, the theme only allows blocks that are properly integrated. But you can enable the rest under **Fictioneer > General > Compatibility > Enable all Gutenberg blocks**. There is no guarantee they will work or look good.
### Reserved URL Slugs

View File

@ -500,14 +500,14 @@ define( 'FICTIONEER_OPTIONS', array(
'name' => 'fictioneer_enable_all_blocks',
'group' => 'fictioneer-settings-general-group',
'sanitize_callback' => 'fictioneer_sanitize_checkbox',
'label' => __( 'Enable all default Gutenberg blocks', 'fictioneer' ),
'label' => __( 'Enable all Gutenberg blocks', 'fictioneer' ),
'default' => false
),
'fictioneer_enable_all_block_styles' => array(
'name' => 'fictioneer_enable_all_block_styles',
'group' => 'fictioneer-settings-general-group',
'sanitize_callback' => 'fictioneer_sanitize_checkbox',
'label' => __( 'Enable all default Gutenberg block styles', 'fictioneer' ),
'label' => __( 'Enable all Gutenberg block styles', 'fictioneer' ),
'default' => false
),
'fictioneer_enable_ajax_nonce' => array(