'dashicons-align-right', 'category' => 'marketing', 'preview_image' => Consts::get_url() . 'admin/img/blocks/ad.jpg', 'description' => __( 'Monetize your website by inserting Ads in your content. This blocks allows you to write a text on the left and display ad on the right. All you need is to grab a script from Google Adsense or other and paste it below. Best use for Rectangle ads.', 'advanced-gutenberg-blocks' ), 'options_callback' => array( $this, 'settings' ), ); Blocks::register_block( 'advanced-gutenberg-blocks/adtext', __( 'Text + Rectangle Ad', 'advanced-gutenberg-blocks' ), $args ); // Register settings Blocks::register_setting( 'advanced-gutenberg-blocks-adtext-script' ); } public function settings() { echo '
'; } public function arguments_for_js() { wp_localize_script( Consts::BLOCKS_SCRIPT, 'advancedGutenbergBlocksAdTextSettings', array( 'script' => get_option('advanced-gutenberg-blocks-adtext-script'), ) ); } }