답변:
자동 업데이트는 자동입니다.
워드 프레스 3.7의 기본, 기본 동작은 작은 버전의 코어의 자동 업데이트 (즉, X.Y.Z
에 X.Y.Z+1
.)
UI에 구성 옵션이 표시되지 않습니다. 동작을 변경하려면 wp-config.php
파일 을 수정 하거나 필터를 추가해야합니다.
다음에 추가하십시오 wp_config.php
:
define( 'AUTOMATIC_UPDATER_DISABLED', true );
또는 다음 필터를 추가하십시오.
add_filter( 'automatic_updater_disabled', '__return_true' );
경유 wp-config.php
:
// Update core - development, major, and minor versions
define( 'WP_AUTO_UPDATE_CORE', true );
// Update core - minor versions
define( 'WP_AUTO_UPDATE_CORE', 'minor' );
// Core update disabled
define( 'WP_AUTO_UPDATE_CORE', false );
필터를 통해 :
// Enable nightlies (dev updates):
add_filter( 'allow_dev_auto_core_updates', '__return_true' );
// Enable major version updates:
add_filter( 'allow_major_auto_core_updates', '__return_true' );
// Disable minor updates
add_filter( 'allow_minor_auto_core_updates', '__return_false' );
전혀 또는 전혀없는 자동 업데이트 테마 및 플러그인 :
테마 및 플러그인 업데이트는 기본적으로 비활성화 되어 있습니다. 필터를 통해 활성화하려면
add_filter( 'auto_update_plugin', '__return_true' );
add_filter( 'auto_update_theme', '__return_true' );
이 필터는 업데이트 개체로 전달됩니다. 따라서 업데이트 할 특정 테마 또는 플러그인을 대상으로 화이트리스트 (포함) 또는 자동 업데이트에서 제외하도록 해당 객체를 조작 할 수 있습니다.
번역 파일 업데이트는 기본적으로 활성화 되어 있습니다. 필터를 통해 비활성화하려면 :
// Disable translation updates
add_filter( 'auto_update_translation', '__return_false' );
업데이터는 성공, 실패 또는 중대한 오류에 대한 결과 이메일을 보냅니다. 필터를 통해 비활성화하려면 :
// Disable update emails
add_filter( 'auto_core_update_send_email', '__return_false' );
이 필터는 또한 이메일 $type
(성공, 실패, 중요), 업데이트 유형 객체 $core_update
또는 $result
다음 에 따라 업데이트 이메일을 조작하는 데 사용될 수 있습니다 .
/* @param bool $send Whether to send the email. Default true.
* @param string $type The type of email to send.
* Can be one of 'success', 'fail', 'critical'.
* @param object $core_update The update offer that was attempted.
* @param mixed $result The result for the core update. Can be WP_Error.
*/
apply_filters( 'auto_core_update_send_email', true, $type, $core_update, $result );
사이트 및 서버 구성이 백그라운드 업데이트 테스터 플러그인 으로 자동 업데이트를 지원하는지 확인할 수 있습니다 . Nacin에서 : "이 플러그인은 사이트의 호환성을 확인하고 문제를 설명합니다."
auto_update_$type filter (auto_update_core, auto_update_plugin, auto_update_theme, auto_update_translation)
다릅니다 . 이 필터는 WordPress가 업데이트하려고하는 내용을 설명하는 실제 업데이트 개체로 전달됩니다. 즉, 개별 플러그인 또는 테마가 업데이트되도록 선택하거나 예정된 핵심 업데이트를 화이트리스트에 추가 할 수 있습니다. "