mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
5 lines
147 B
Text
5 lines
147 B
Text
function wpstg_clone_excluded_files($default)
|
|
{
|
|
$files = array('custom-file', '*LOG-*', '*.logs');
|
|
return array_merge($default, $files);
|
|
}
|