admin管理员组文章数量:1130349
As announced, Wordpress version 5 will be hitting the road this December. Considering the availability of security support and patches for previous versions (4.9.x, 4.8.x, 4.7.x), until when is it considered safe to postpone the 5.x upgrade and keep projects running in 4.x?
As announced, Wordpress version 5 will be hitting the road this December. Considering the availability of security support and patches for previous versions (4.9.x, 4.8.x, 4.7.x), until when is it considered safe to postpone the 5.x upgrade and keep projects running in 4.x?
Share Improve this question edited Dec 6, 2018 at 11:04 Marcos Buarque asked Dec 5, 2018 at 11:36 Marcos BuarqueMarcos Buarque 1572 silver badges10 bronze badges 3- 3 Why do you need to postpone it? If you don't want the new editor just install the Classic Editor plugin. – Jacob Peattie Commented Dec 5, 2018 at 11:50
- I have read version 5 could be more disruptive than usual updates and maybe not backwards compatible in some aspects, but I should maybe dig deeper into that. – Marcos Buarque Commented Dec 6, 2018 at 11:06
- Only in regards to the editor, which is addressed by the Classic Editor plugin. – Jacob Peattie Commented Dec 6, 2018 at 11:14
1 Answer
Reset to default 3As stated here:
The only current officially supported version is WordPress 4.9.8. Previous major releases before this may or may not get security updates as serious exploits are discovered.
And it has always been that way - only one version is officially supported.
This means it's always a bad idea to postpone updates.
So if you're afraid of Gutenberg, then you should:
Prepare a test version for your site and check if it will cause any problems with 5.0.
Disable Gutenberg, if you don't want to use it.
You can disable Gutenberg with this code:
if (version_compare($GLOBALS['wp_version'], '5.0-beta', '>')) {
// WP > 5 beta
add_filter('use_block_editor_for_post_type', '__return_false', 100);
} else {
// WP < 5 beta
add_filter('gutenberg_can_edit_post_type', '__return_false');
}
or using one of available plugins.
As announced, Wordpress version 5 will be hitting the road this December. Considering the availability of security support and patches for previous versions (4.9.x, 4.8.x, 4.7.x), until when is it considered safe to postpone the 5.x upgrade and keep projects running in 4.x?
As announced, Wordpress version 5 will be hitting the road this December. Considering the availability of security support and patches for previous versions (4.9.x, 4.8.x, 4.7.x), until when is it considered safe to postpone the 5.x upgrade and keep projects running in 4.x?
Share Improve this question edited Dec 6, 2018 at 11:04 Marcos Buarque asked Dec 5, 2018 at 11:36 Marcos BuarqueMarcos Buarque 1572 silver badges10 bronze badges 3- 3 Why do you need to postpone it? If you don't want the new editor just install the Classic Editor plugin. – Jacob Peattie Commented Dec 5, 2018 at 11:50
- I have read version 5 could be more disruptive than usual updates and maybe not backwards compatible in some aspects, but I should maybe dig deeper into that. – Marcos Buarque Commented Dec 6, 2018 at 11:06
- Only in regards to the editor, which is addressed by the Classic Editor plugin. – Jacob Peattie Commented Dec 6, 2018 at 11:14
1 Answer
Reset to default 3As stated here:
The only current officially supported version is WordPress 4.9.8. Previous major releases before this may or may not get security updates as serious exploits are discovered.
And it has always been that way - only one version is officially supported.
This means it's always a bad idea to postpone updates.
So if you're afraid of Gutenberg, then you should:
Prepare a test version for your site and check if it will cause any problems with 5.0.
Disable Gutenberg, if you don't want to use it.
You can disable Gutenberg with this code:
if (version_compare($GLOBALS['wp_version'], '5.0-beta', '>')) {
// WP > 5 beta
add_filter('use_block_editor_for_post_type', '__return_false', 100);
} else {
// WP < 5 beta
add_filter('gutenberg_can_edit_post_type', '__return_false');
}
or using one of available plugins.
本文标签: pluginsWordPress 5 upgrade until when is it safe to keep project running in 4x
版权声明:本文标题:plugins - WordPress 5 upgrade: until when is it safe to keep project running in 4.x? 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:https://it.en369.cn/questions/1749124303a2319524.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。


发表评论