Files
2026-04-28 15:13:50 +02:00

16 lines
277 B
PHP

<?php
/**
* Gets the name of the default template
* @return string
*/
function dlm_get_default_download_template() {
$default = get_option( 'dlm_default_template' );
if ( $default == 'custom' ) {
$default = get_option( 'dlm_custom_template' );
}
return $default;
}