D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
mybf1
/
www
/
pati.bf1.my
/
wp-content
/
themes
/
sinatra
/
woocommerce
/
cart
/
header-widget
/
Filename :
buttons.php
back
Copy
<?php /** * Header Cart Widget cart & checkout buttons. * * @package Sinatra */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } ?> <div class="si-cart-buttons"> <a href="<?php echo esc_url( wc_get_cart_url() ); ?>" class="si-btn btn-text-1" role="button"> <span><?php esc_html_e( 'View Cart', 'sinatra' ); ?></span> </a> <a href="<?php echo esc_url( wc_get_checkout_url() ); ?>" class="si-btn btn-fw" role="button"> <span><?php esc_html_e( 'Checkout', 'sinatra' ); ?></span> </a> </div>