nxs_ucwords
The NextScripts: Social Networks Auto-Poster nxs ucwords function.
Description
nxs_ucwords( $str );
Parameters (1)
- 0. $str
- The str.
Usage
if ( !function_exists( 'nxs_ucwords' ) ) { require_once ABSPATH . PLUGINDIR . 'nextscripts-social-networks-auto-poster/inc/nxs_functions_adv.php'; } // The str. $str = null; // NOTICE! Understand what this does before running. $result = nxs_ucwords($str);
Defined (1)
The function is defined in the following location(s).
- /inc/nxs_functions_adv.php
- if (!function_exists("nxs_ucwords")) { function nxs_ucwords($str) { if (function_exists("mb_convert_case")) return nxs_mbConvertCaseUTF8var($str); else return ucwords($str); }}