'', 'top-arrow-two' => '', 'top-arrow-three' => '', 'top-arrow-four' => '', 'top-arrow-five' => '', ); /** * Main Smart_Post_Show_Pro_blocks Instance * * @since 2.0 * @static * * @return self help instance */ public static function instance() { if ( is_null( self::$instance ) ) { self::$instance = new self(); } return self::$instance; } /** * Undocumented function * * @return void */ public function back_to_top_init() { $this->render_back_to_top_btn(); } /** * Undocumented function * * @return void */ public function render_back_to_top_btn() { $attributes = $this->get_back_to_top_attributes(); $render_condition = $this->check_module_conditions(); if ( ! $render_condition ) { return; } $dynamic_style = isset( $attributes['dynamic_style'] ) ? $attributes['dynamic_style'] : ''; $font_lists = isset( $attributes['fontListsEditPage'] ) ? $attributes['fontListsEditPage'] : ''; $display_position = isset( $attributes['display_position'] ) ? $attributes['display_position'] : ''; $entrance_animation = isset( $attributes['entrance_animation'] ) ? $attributes['entrance_animation'] : ''; $smooth_scroll = isset( $attributes['smooth_scroll'] ) ? $attributes['smooth_scroll'] : ''; $back_to_top_icon = isset( $attributes['back_to_top_icon'] ) ? $attributes['back_to_top_icon'] : ''; $back_top_label = isset( $attributes['back_top_label'] ) ? $attributes['back_top_label'] : ''; $go_to_bottom = isset( $attributes['go_to_bottom'] ) ? $attributes['go_to_bottom'] : ''; $back_bottom_label = isset( $attributes['back_bottom_label'] ) ? $attributes['back_bottom_label'] : ''; $top_icon_source = isset( $attributes['top_icon_source'] ) ? $attributes['top_icon_source'] : ''; $transition_delay = isset( $attributes['transition_delay'] ) ? $attributes['transition_delay'] : ''; $wrapper_class = 'sp-smart-post-back-to-top-wrapper sp-position-' . $display_position . ' sp-animation-' . $entrance_animation; if ( $smooth_scroll ) { $wrapper_class .= 'sp-scroll-smooth'; } $icon_list = $this::$icon_list; $transition_delay_condition = $smooth_scroll ? $transition_delay['value'] : '0.3'; $default_style = '.sp-smart-post-back-to-top-wrapper{cursor:pointer;position:fixed;bottom:30px;top:unset;background-color:var(--smart-post-secondary);color:#fff;display:flex;align-items:center;padding:8px;z-index:999}.sp-smart-post-back-to-top-wrapper.sp-position-button-right{left:unset;right:30px}.sp-smart-post-back-to-top-wrapper.sp-position-button-left{left:30px;right:unset}.sp-smart-post-back-to-top-wrapper .sp-smart-post-back-to-top-button{display:flex;align-items:center;justify-content:center}.sp-smart-post-back-to-top-wrapper .sp-smart-post-back-to-top-icon{width:25px;height:25px}'; wp_enqueue_script( 'sp-smart-post-back-to-top' ); ob_start(); ?>