'CTBlock', 'title' => 'Countdown Time', ] ], $categories ); } // Categories function onInit() { wp_register_style( 'ctb-countdown-time-editor-style', plugins_url( 'dist/editor.css', __FILE__ ), [ 'wp-edit-blocks' ], CTB_PLUGIN_VERSION ); // Backend Style wp_register_style( 'ctb-countdown-time-style', plugins_url( 'dist/style.css', __FILE__ ), [ 'wp-editor' ], CTB_PLUGIN_VERSION ); // Frontend Style register_block_type( __DIR__, [ 'editor_style' => 'ctb-countdown-time-editor-style', 'style' => 'ctb-countdown-time-style', 'render_callback' => [$this, 'render'] ] ); // Register Block wp_set_script_translations( 'ctb-countdown-time-editor-script', 'countdown-time', plugin_dir_path( __FILE__ ) . '/languages' ); // Translate } function render( $attributes ){ extract( $attributes ); $className = $className ?? ''; $ctbBlockClassName = 'wp-block-ctb-countdown-time ' . $className . ' align' . $align; ob_start(); ?>