You appear to be a bot. Output may be restricted
Description
Implement "themes_api" for our own themes
Usage
oik_remote::oik_lazy_themes_api( $false, $action, $args );
Parameters
- $false
- ( bool ) required – false
- $action
- ( string ) required – one of a set of actions
- "query_themes" – see below
- "feature_list"
- "theme_information"
- $args
- ( object ) required – for "query_themes" ( [0] => [1] => query_themes [2] => stdClass Object ( [page] => 1 [per_page] => 36 [fields] => [browse] => featured ) ) where [browse] can be "featured" – list the Featured themes "new" – list the Newest themes "updated" – list the Recently Updated themes or [search] to search by keyword or [author] to search by author or [tag] which is an array of tags. e.g. [tag] => Array ( [0] => blue ) ) $args for "theme_information" array('slug' => $theme, 'fields' => array('sections' => false, 'tags' => false)
Returns
voidSource
File name: oik/libs/class-oik-remote.phpLines:
1 to 6 of 6
static function oik_lazy_themes_api( $false, $action, $args ) { bw_backtrace(); bw_trace2(); $response = false; return( $response ); }View on GitHub View on Trac