PHPackages                             devaloka/cfs-network-support - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. devaloka/cfs-network-support

ActiveWordpress-plugin

devaloka/cfs-network-support
============================

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

v0.3.0(9y ago)416[1 issues](https://github.com/devaloka/cfs-network-support/issues)GPL-2.0PHPPHP &gt;=5.5.9

Since Jan 31Pushed 8y ago2 watchersCompare

[ Source](https://github.com/devaloka/cfs-network-support)[ Packagist](https://packagist.org/packages/devaloka/cfs-network-support)[ Docs](https://github.com/devaloka/cfs-network-support)[ RSS](/packages/devaloka-cfs-network-support/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (4)Dependencies (2)Versions (5)Used By (0)

CFS Network Support
===================

[](#cfs-network-support)

[![Latest Stable Version](https://camo.githubusercontent.com/82aef003f004ab48c188008f3d85a28a932e57a0a4c905702327529f6e42a35d/68747470733a2f2f706f7365722e707567782e6f72672f646576616c6f6b612f6366732d6e6574776f726b2d737570706f72742f762f737461626c65)](https://packagist.org/packages/devaloka/cfs-network-support)[![Latest Unstable Version](https://camo.githubusercontent.com/9045ceaadba9997b0990b81d8040f68423866feb665f1da3ad2c0b30cec25099/68747470733a2f2f706f7365722e707567782e6f72672f646576616c6f6b612f6366732d6e6574776f726b2d737570706f72742f762f756e737461626c65)](https://packagist.org/packages/devaloka/cfs-network-support)[![License](https://camo.githubusercontent.com/e42643ff5ef44bbbbf082c4fa25a4cd961a8d2bd4025a0b418a16e18c515a3e0/68747470733a2f2f706f7365722e707567782e6f72672f646576616c6f6b612f6366732d6e6574776f726b2d737570706f72742f6c6963656e7365)](https://packagist.org/packages/devaloka/cfs-network-support)[![Build Status](https://camo.githubusercontent.com/bf398a5656fc4bf65b9843eb9e475bc0788833b503482fd6c56d1dbd53cc9c18/68747470733a2f2f7472617669732d63692e6f72672f646576616c6f6b612f6366732d6e6574776f726b2d737570706f72742e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/devaloka/cfs-network-support)

A [Custom Field Suite](https://wordpress.org/plugins/custom-field-suite/) add-on plugin that adds an ability to support Network (Multisite environment).

Installation
------------

[](#installation)

### Manual Installation

[](#manual-installation)

1. Just copy all files into `wp-content/plugins/cfs-network-support/`.

### Manual Installation (as a Must-Use plugin)

[](#manual-installation-as-a-must-use-plugin)

1. Just copy all files into `wp-content/mu-plugins/cfs-network-support/`.
2. Move `cfs-network-support/loader/50-cfs-network-support-loader.php`into `wp-content/mu-plugins/`.

### Installation via Composer

[](#installation-via-composer)

1. Install via Composer.

    ```
    composer require devaloka/cfs-network-support
    ```

### Installation via Composer (as a Must-Use plugin)

[](#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 `wp-content/mu-plugins/`.
3. Move `cfs-network-support/loader/50-cfs-network-support-loader.php`into `wp-content/mu-plugins/`.

Usage
-----

[](#usage)

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

### Get field value(s)

[](#get-field-values)

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

See also [get - Custom Field Suite](http://docs.customfieldsuite.com/api/get.html).

### Save field value(s)

[](#save-field-values)

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

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

See also [save - Custom Field Suite](http://docs.customfieldsuite.com/api/save.html).

### Get reverse-related Posts

[](#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](http://docs.customfieldsuite.com/api/get_reverse_related.html).

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance15

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 95.1% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~56 days

Total

4

Last Release

3588d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/ac3e763a965107007fec45e7af50ce9122f3a8985fb7823fa1654dfa13d10abd?d=identicon)[whizark](/maintainers/whizark)

---

Top Contributors

[![whizark](https://avatars.githubusercontent.com/u/1211058?v=4)](https://github.com/whizark "whizark (39 commits)")[![iobot](https://avatars.githubusercontent.com/u/18593717?v=4)](https://github.com/iobot "iobot (2 commits)")

---

Tags

custom-fieldsmultisitenetworkpluginwordpresspluginwordpressnetworkmultisitecustom fieldcfs

###  Code Quality

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/devaloka-cfs-network-support/health.svg)

```
[![Health](https://phpackages.com/badges/devaloka-cfs-network-support/health.svg)](https://phpackages.com/packages/devaloka-cfs-network-support)
```

###  Alternatives

[10up/elasticpress

Supercharge WordPress with Elasticsearch.

1.3k374.3k6](/packages/10up-elasticpress)[humanmade/network-media-library

Network Media Library provides a central media library that's shared across all sites on the Multisite network.

29644.8k](/packages/humanmade-network-media-library)[sybrew/the-seo-framework

An automated, advanced, accessible, unbranded and extremely fast SEO solution for any WordPress website.

47078.8k](/packages/sybrew-the-seo-framework)[devaloka/network-wp-query

A WordPress plugin that provides Network-wide WP Query for Multisite environment

161.3k](/packages/devaloka-network-wp-query)[bueltge/wordpress-multisite-enhancements

Enhance Multisite for Network Admins with different topics

1113.6k](/packages/bueltge-wordpress-multisite-enhancements)[iceicetimmy/acf-post-type-selector

Post type selector for Advanced Custom Fields.

559.0k](/packages/iceicetimmy-acf-post-type-selector)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
