' . esc_html__( 'Botiga', 'botiga' ) . '', get_bloginfo( 'name' ), '©', date('Y') );
$credits = str_replace( $tags, $replace, $credits );
return $credits;
}
/**
* Back to top icon
*/
public function scroll_to_top() {
$enable = get_theme_mod( 'enable_scrolltop', 1 );
if ( !$enable ) {
return;
}
$type = get_theme_mod( 'scrolltop_type', 'icon' );
$text = get_theme_mod( 'scrolltop_text', esc_html__( 'Back to top', 'botiga' ) );
$icon = get_theme_mod( 'scrolltop_icon', 'icon1' );
$visibility = get_theme_mod( 'scrolltop_visibility', 'all' );
$position = get_theme_mod( 'scrolltop_position', 'right' );
echo '';
if ( 'text' === $type ) {
echo '' . esc_html( $text ) . '';
}
echo '' . botiga_get_svg_icon( 'icon-btt-' . $icon, false ) . ''; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo '
';
}
}
/**
* Initialize class
*/
Botiga_Footer::get_instance();
endif;