'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' ), ); gutenblocks_register_blocks( 'gutenblocks/adtext', __( 'Text + Rectangle Ad', 'advanced-gutenberg-blocks' ), $args ); // Register settings gutenblocks_register_setting( 'gutenblocks-adtext-script' ); } public function settings() { echo '
'; } public function arguments_for_js() { wp_localize_script( 'gutenblocks-block', 'gutenblocksAdTextSettings', array( 'script' => get_option('gutenblocks-adtext-script'), ) ); } }