Last active
September 3, 2015 07:19
-
-
Save max-kk/9d49565c4cb7629415dc to your computer and use it in GitHub Desktop.
This file contains 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 test_get_def_transal() { | |
// возвращаем массив, со значениями по умолчанию | |
return array( | |
'text_1' => 'This is text 1!', | |
'text_2' => 'This is text 2!', | |
); | |
} | |
function test_get_transal() { | |
// применяем фильтры и возвращаем значения Опции или значения по умолчанию | |
// Для фильтров нужно использовать => https://codex.wordpress.org/Plugin_API/Filter_Reference/pre_option_(option_name) | |
$transl = get_option('test_trasnl', false); | |
if (empty($transl) ) { | |
reutrn test_get_def_transal(); | |
}; | |
reutrn $transl; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment