| Current Path : /var/www/html/taet.readinessglobal.com/wp-content/plugins/o365/function/ |
| Current File : /var/www/html/taet.readinessglobal.com/wp-content/plugins/o365/function/o365_get_setting.php |
<?php
defined('ABSPATH') OR die('Direct Access Restricted!');
/**
* @param String $name Settings name that is searching for
* @return mixed False on failure or Anything contained in a specific value of a key.
*/
function o365_get_setting( $name ){
$settings = o365_get_settings();
return isset( $settings[$name]) ? $settings[$name] : false;
}