If you change the site URL option to use a different one from your
installed directory, the /wp-json/
is base changes too.
This plugin fixes that.
- Download a ZIP of this plugin
- Upload to WordPress
Adds a where field to WPGraphQL content nodes (post, page and custom post types) to search by field using regexp or like. Supported fields are name, title, author, excerpt, status and mime_type.
wpgraphql-search-field.php
filewp-content/mu-plugins
This small plugin adds a new format to retrieve excerpt or title in text plain format instead of rendered.
wpgraphql-field-format-text-plain.php
filewp-content/mu-plugins
[{ | |
"id": "year", | |
"type": "year", | |
"label": "Em que ano ficou desempregado/a", | |
"min": 2008 | |
}, | |
{ | |
"id": "month", | |
"type": "select", | |
"label": "E em que mês", |
import { createClient } from "redis" | |
type Listener = <E extends Event>(event: E) => void | |
/** | |
* Atomic distributed memory accross nodes | |
* backed by Redis server. | |
*/ | |
class DistributedMemory { | |
/** |
import { promises as fs } from "fs" | |
import path from "path" | |
export interface NodeItem { | |
id: string | |
data: any | |
} | |
const cache: NodeItem[] = [] |
<?php | |
/** | |
* Plugin Name: Elementor S3 | |
* Description: Elementor support for S3 Uploads plugins | |
* Plugin URI: https://gist.github.com/lightningspirit/73df703f0db1fef14bd30d64ea1e8631 | |
* Author: Move Your Digital, Inc. | |
* Author URI: https://moveyourdigital.com | |
* Version: 0.1.0 | |
* |
For multisite network ONLY
Adds a new Plugins
tab under wp-admin/network/sites.php
which gives
the ability to enable or disable (without actually activate) plugins per site.
This just "hides" not enabled plugins from the site plugins area.
Note: the super-admin can still have access to all plugins, even for each specific website which is great because the super-admin can activate hidden plugins :-)