Skip to content

The wp-parsely 3.1 version got released 11 days ago and was also made available to VIP customers optionally. This release does not introduce any breaking changes coming from 3.0. Its main features are support for decoupled WordPress architechtures, the Open on Parse.ly button in the admin bar and a revamped settings page.

Currently, the 3.0 branch is the default for VIP sites that have Parse.ly enabled through VIP’s mu-plugins and don’t have any version pinned. On February 9th, 2022 we will switch the VIP platform default to 3.1. This change does not affect customers who don’t use Parse.ly or have a custom version uploaded.

If you want to try the version before that release date, you can do it with the following snippet:

add_filter(
	'wpvip_parsely_version',
	function() {
		return '3.1';
	} 
);

If you want to skip this version and stay on the 3.0 branch, you can do it with:

add_filter(
	'wpvip_parsely_version',
	function() {
		return '3.0';
	} 
);