mirror of
https://github.com/pronamic/woocommerce-subscriptions.git
synced 2025-10-18 07:12:55 +00:00
9 lines
191 B
PHP
9 lines
191 B
PHP
<?php
|
|
|
|
// API so you don't have to use "new"
|
|
if ( !function_exists( 'tlc_transient' ) ) {
|
|
function tlc_transient( $key ) {
|
|
$transient = new TLC_Transient( $key );
|
|
return $transient;
|
|
}
|
|
} |