File: /home/salamatk/takarzan.ir/wp-content/themes/xts-luman/templates/elementor/single-product/price.php
<?php
/**
* Product price function
*
* @package xts
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Direct access not allowed.
}
if ( ! function_exists( 'xts_single_product_price_template' ) ) {
/**
* Product price template
*
* @since 1.0.0
*
* @param array $element_args Associative array of arguments.
*/
function xts_single_product_price_template( $element_args ) {
if ( ! xts_is_woocommerce_installed() ) {
return;
}
$default_args = array(
'button_align' => '',
);
extract( wp_parse_args( $element_args, $default_args ) ); // phpcs:ignore
woocommerce_template_single_price();
}
}