20 lines
293 B
PHP
20 lines
293 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,
|
|
'shortcode_present' => false
|
|
);
|
|
} |