Skip to content

Instantly share code, notes, and snippets.

@manhleo93
Created January 15, 2018 09:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manhleo93/22fddc320078882f350f8f3cc662243e to your computer and use it in GitHub Desktop.
Save manhleo93/22fddc320078882f350f8f3cc662243e to your computer and use it in GitHub Desktop.
Tắt tự động cập nhật theme và plugin wordpress
# Tắt tính năng tự động cập nhật Plugin WordPress
add_filter( 'auto_update_plugin', '__return_false' );
# Tắt tính năng tự động cập nhật Theme WordPress
add_filter( 'auto_update_theme', '__return_false' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment