__( 'AT Heading Title', 'aakanksha'), 'size' => 'span12', ); //create the block parent::__construct('as_Title_Heading', $block_options); } function form($instance) { $defaults = array( 'title' => '', 'sub_title' => '', 'duration' => '900', 'delay' => '0', 'animation' => '', 'margin_top' => '10', 'margin_bottom' => '10', 'bg_color' => '#fafafa', ); $instance = wp_parse_args($instance, $defaults); extract($instance); global $include_animation ; ?>

 - 

   -  

'.$title.'

'.$sub_title.' '; } // function before_block($instance) { extract($instance); echo '
'; } function after_block($instance) { extract($instance); echo '
'; } } as_register_block( 'as_Title_Heading' ); endif;