Skip to content

Instantly share code, notes, and snippets.

@Vitzkrieg
Last active October 10, 2023 11:51
Show Gist options
  • Save Vitzkrieg/b1fe840688917aba0e5377c6f1f12a00 to your computer and use it in GitHub Desktop.
Save Vitzkrieg/b1fe840688917aba0e5377c6f1f12a00 to your computer and use it in GitHub Desktop.
WordPress Option Name to Title Case
// convert wp_option_name -> Wp Option Name
$titlecase = ucwords( implode(' ', explode('_', $option->option_name) ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment