Last active
October 14, 2021 19:39
-
-
Save seojacky/732cafbfb3d29fbbed80d87e21b9c697 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function tlap_plugin_default_values(){ | |
$defaults = array( | |
'tlap_add_analytics_option' => array( | |
'tlap_excludepage' => '', | |
'tlap_timer_delay' => '5000', | |
), | |
'tlap_add_analytics_option_counters' => array( | |
'tlap_analytics_id' => '', | |
), | |
); | |
} | |
add_action( 'tlap_default_options', 'tlap_plugin_default_values' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment