devgeniem/tms-plugin-network-site-list

Provides a REST endpoint that lists the sites in a network installation.

1.2.0 2023-06-01 17:46 UTC

This package is auto-updated.

Last update: 2024-03-30 00:24:31 UTC


README

WordPress plugin for that provides a REST endpoint for listing all sites in a network installation.

Prerequisites

  • WordPress Network installation

Routes

Route /wp-json/tms/sites/ returns site list as an array.

[
	[
		'ID' => 1,
		'name' => 'foo',
	],
	[
		'ID' => 2,
		'name' => 'bar',
	],
	[
		'ID' => 3,
		'name' => 'baz',
	],
]

Contributing

Contributions are highly welcome! Just leave a pull request of your awesome well-written must-have feature.