Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Jeff Balicki
/
FP_Canada
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
89767559
authored
2022-04-11 09:55:13 -0400
by
Jeff Balicki
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fp
1 parent
692b0e7b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
wp-config.php
wp-content/themes/understrap-child/functions.php
wp-config.php
View file @
8976755
...
...
@@ -58,11 +58,7 @@ define('ALLOW_UNFILTERED_UPLOADS', true);
define
(
'DISALLOW_FILE_MODS'
,
true
);
define
(
'AUTOMATIC_UPDATER_DISABLED'
,
true
);
define
(
'WP_AUTO_UPDATE_CORE'
,
false
);
add_filter
(
'auto_core_update_send_email'
,
'__return_false'
);
add_filter
(
'auto_update_plugin'
,
'__return_false'
);
add_filter
(
'pre_site_transient_update_plugins'
,
'remove_core_updates'
);
add_filter
(
'auto_update_theme'
,
'__return_false'
);
add_filter
(
'pre_site_transient_update_themes'
,
'remove_core_updates'
);
/**#@+
* Authentication Unique Keys and Salts.
...
...
wp-content/themes/understrap-child/functions.php
View file @
8976755
...
...
@@ -8,6 +8,11 @@
// Exit if accessed directly.
defined
(
'ABSPATH'
)
||
exit
;
add_filter
(
'auto_core_update_send_email'
,
'__return_false'
);
add_filter
(
'auto_update_plugin'
,
'__return_false'
);
add_filter
(
'pre_site_transient_update_plugins'
,
'remove_core_updates'
);
add_filter
(
'auto_update_theme'
,
'__return_false'
);
add_filter
(
'pre_site_transient_update_themes'
,
'remove_core_updates'
);
/**
...
...
Please
register
or
sign in
to post a comment