1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<?php
/**
* PRDDD Common Functions
*
* @author Tyche Softwares
* @package Product-Delivery-Date-Pro-for-WooCommerce/Common-Functions
* @since 1.0
*/
/**
* Returns the value of the option key from options table
*
* @param string Option key.
*
* @return string Option value
* @since 1.0
*/
function ts_get_option( $option_variable ) {
return get_option( $option_variable );
}