General. * * @return void */ function adminInit(){ register_setting( 'general', 'button_block_option', 'sanitize_text_field' ); add_settings_field( 'button_block_option_field', 'Hide Button Block from admin Menu', [ $this , 'optionCallback' ], 'general' ); } /** * Renders the checkbox toggle for the 'Hide Button Block from admin menu' setting. * * @return void */ function optionCallback() { $value = get_option( 'button_block_option', '' ); ?>

Turn this setting on or off.

post_type, __( 'Help & Demos - Button Block', 'button-block' ), __( 'Help & Demos', 'button-block' ), 'manage_options', 'button-block', [ \BTNBPlugin::class, 'renderDashboard' ] ); } } new AdminMenu();