diff options
author | 2018-06-08 10:14:05 -0400 | |
---|---|---|
committer | 2018-06-08 10:14:05 -0400 | |
commit | fecae8a760ce5a1a95b26ca7a6d4f1cf6dbb3cb2 (patch) | |
tree | 1115108e72a5466e573fca582656979b1e7aa706 /themes/twentysixteen/inc/back-compat.php | |
parent | Update twentyfifteen 2.0 (diff) | |
download | blogs-gentoo-fecae8a760ce5a1a95b26ca7a6d4f1cf6dbb3cb2.tar.gz blogs-gentoo-fecae8a760ce5a1a95b26ca7a6d4f1cf6dbb3cb2.tar.bz2 blogs-gentoo-fecae8a760ce5a1a95b26ca7a6d4f1cf6dbb3cb2.zip |
Update twentysixteen 1.5
Diffstat (limited to 'themes/twentysixteen/inc/back-compat.php')
-rw-r--r-- | themes/twentysixteen/inc/back-compat.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/themes/twentysixteen/inc/back-compat.php b/themes/twentysixteen/inc/back-compat.php index 7ed4240c..ed0f86df 100644 --- a/themes/twentysixteen/inc/back-compat.php +++ b/themes/twentysixteen/inc/back-compat.php @@ -50,9 +50,11 @@ function twentysixteen_upgrade_notice() { * @global string $wp_version WordPress version. */ function twentysixteen_customize() { - wp_die( sprintf( __( 'Twenty Sixteen requires at least WordPress version 4.4. You are running version %s. Please upgrade and try again.', 'twentysixteen' ), $GLOBALS['wp_version'] ), '', array( - 'back_link' => true, - ) ); + wp_die( + sprintf( __( 'Twenty Sixteen requires at least WordPress version 4.4. You are running version %s. Please upgrade and try again.', 'twentysixteen' ), $GLOBALS['wp_version'] ), '', array( + 'back_link' => true, + ) + ); } add_action( 'load-customize.php', 'twentysixteen_customize' ); |