soberwp/unravel

This package is abandoned and no longer maintained. No replacement package was suggested.

WordPress plugin to separate concerns for plugins Models and Advanced Custom Fields.

Installs: 5 195

Dependents: 0

Suggesters: 0

Security: 0

Stars: 24

Watchers: 3

Forks: 2

Open Issues: 1

Type:wordpress-plugin

1.0.0 2017-03-11 15:57 UTC

This package is auto-updated.

Last update: 2021-06-24 12:56:44 UTC


README

Please note that this package is deprecated and no longer supported in order to focus on more popular packages.

WordPress plugin to separate concerns for Models and Advanced Custom Fields from your theme.

Installation

Composer:

Recommended method; Roots Bedrock and WP-CLI

$ composer require soberwp/unravel
$ wp plugin activate unravel

Manual:

  • Download the zip file
  • Unzip to your sites plugin folder
  • Activate via WordPress

Requirements:

Usage:

Move your data/model config files out of your theme folder for better separation of concerns.

Unravel performs the following tasks;

  • Moves folders model-config/ and acf-json/ within your theme to wp-content/models/ (or web/app/models/ for Bedrock).
  • Updates and overrides save/load filter paths for each plugin.

Deactivation;

  • Data/model config files are moved back to their default locations within your theme.

Updates

Composer:

  • Change the composer.json version to ^1.0.0**
  • Check CHANGELOG.md for any breaking changes before updating.
$ composer update

WordPress:

Includes support for github-updater to keep track on updates through the WordPress backend.

Other