19 lines
263 B
PHP
19 lines
263 B
PHP
<?php
|
|
/**
|
|
* @package Functions
|
|
*/
|
|
|
|
// Exit if accessed directly
|
|
if ( !defined( 'ABSPATH' ) ) exit;
|
|
|
|
/**
|
|
* Returns default options
|
|
*
|
|
* @return array
|
|
*/
|
|
function wplt_get_default_options() {
|
|
return array(
|
|
'enable_css' => 1,
|
|
'reset_settings' => 0 z
|
|
);
|
|
} |