devaloka/cfs-network-support

A Custom Field Suite add-on plugin that adds an ability to support Network (Multisite environment)

v0.3.0 2016-07-17 21:38 UTC

This package is auto-updated.

Last update: 2024-04-29 03:56:39 UTC


README

Latest Stable Version Latest Unstable Version License Build Status

A Custom Field Suite add-on plugin that adds an ability to support Network (Multisite environment).

Installation

Manual Installation

  1. Just copy all files into <ABSPATH>wp-content/plugins/cfs-network-support/.

Manual Installation (as a Must-Use plugin)

  1. Just copy all files into <ABSPATH>wp-content/mu-plugins/cfs-network-support/.

  2. Move cfs-network-support/loader/50-cfs-network-support-loader.php into <ABSPATH>wp-content/mu-plugins/.

Installation via Composer

  1. Install via Composer.

    composer require devaloka/cfs-network-support

Installation via Composer (as a Must-Use plugin)

  1. Install via Composer.

    composer require devaloka/cfs-network-support
  2. Move cfs-network-support directory into <ABSPATH>wp-content/mu-plugins/.

  3. Move cfs-network-support/loader/50-cfs-network-support-loader.php into <ABSPATH>wp-content/mu-plugins/.

Usage

Just pass Site ID with site_id key to CFS API options.

Get field value(s)

echo CFS()->get('first_name', false, ['site_id' => 1]);

See also get - Custom Field Suite.

Save field value(s)

$field_data = ['first_name' => 'Matt'];
$post_data  = ['ID' => 678];

CFS()->save($field_data, $post_data, ['site_id' => 1]);

See also save - Custom Field Suite.

Get reverse-related Posts

$related_ids = CFS()->get_reverse_related($post->ID, [
    'field_name' => 'related_events',
    'post_type'  => 'news',
    'site_id'    => 1,    
]);

See also get_reverse_related - Custom Field Suite.