wpup/functions

Bring functions into WordPress REST API

Installs: 5

Dependents: 0

Suggesters: 0

Security: 0

Stars: 4

Watchers: 3

Forks: 2

Open Issues: 0

Type:wordpress-plugin

v1.0.0 2018-10-31 15:29 UTC

This package is auto-updated.

Last update: 2024-03-29 04:11:22 UTC


README

No Maintenance Intended

Bring functions into WordPress REST API.

Example

Create hello.php in wp-content/themes/NAME/functions/hello.php

<?php

function handler($request) {
	return 'Hello, world';
}

Call it

GET /wp-json/functions/v1/hello

"Hello, world"

Supported HTTP methods for each function file are:

GET, POST, PUT, PATCH, DELETE

Namespaces and classes are supported as well.

<?php

namespace MyNamespace;

class MyClass {
	public function handler($request) {
		return 'Hello, world';
	}
}

Install

composer require wpup/functions

Filters

Short documenation about filters, read the source code to find out more about each filter.

  • functions_file - Modify file path
  • functions_handle - Modify function/method string name (that are used for call_user_func)
  • functions_directories - Modify which directories the plugin should scan for functions files. Default is wp-content/themes/NAME/functions

License

MIT © Fredrik Forsmo