芝麻web文件管理V1.00
';
do_action( 'astra_edd_archive_after_block_wrap' );
}
}
add_action( 'astra_edd_archive_product_content', 'astra_edd_archive_product_structure' );
}
/**
* Returns list of Easy Digital Downloads Terms
*/
if ( ! function_exists( 'astra_edd_terms_list' ) ) {
/**
* Show EDD product terms
*
* @param string $taxonomy_name Taxonomy name.
* @return void
*/
function astra_edd_terms_list( $taxonomy_name ) {
$product_id = get_the_ID();
if ( ! $product_id ) {
return;
}
// Getting the terms related to the current products.
$terms = get_the_terms( $product_id, $taxonomy_name );
if ( ! $terms || is_wp_error( $terms ) ) {
return;
}
?>
';
$output .= '' . esc_html( $variable_button_text ) . '';
$output .= '';
} else {
if ( ! empty( $add_to_cart_text ) ) {
$output = edd_get_purchase_link(
array(
'price' => false,
'text' => esc_html( $add_to_cart_text ),
'checkout' => esc_html( $add_to_cart_text ), // To display astra customizer add to cart text.
)
);
}
}
return $output;
}