PATH:
home
/
letacommog
/
aperobusiness
/
wp-content
/
plugins
/
cloudflare
/
src
/
WordPress
<?php namespace CF\WordPress; class WordPressWrapper { public function getOption($key, $default) { return get_option($key, $default); } public function updateOption($key, $value) { return update_option($key, $value); } public function deleteOption($key) { return delete_option($key); } public function getSiteURL() { $site_url = get_site_url(); if (function_exists('domain_mapping_siteurl')) { $site_url = domain_mapping_siteurl($site_url); } return strtolower($site_url); } }
[+]
..
[-] DataStore.php
[edit]
[-] PluginRoutes.php
[edit]
[-] ClientActions.php
[edit]
[-] WordPressWrapper.php
[edit]
[+]
Constants
[-] WordPressClientAPI.php
[edit]
[-] WordPressAPI.php
[edit]
[-] Hooks.php
[edit]
[-] HTTP2ServerPush.php
[edit]
[-] Utils.php
[edit]
[-] PluginActions.php
[edit]
[-] Proxy.php
[edit]
[-] ClientRoutes.php
[edit]