Skip to content

Instantly share code, notes, and snippets.

@alexminza
Created February 27, 2018 11:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexminza/767deb764b18e0d3f730fe33a93078e1 to your computer and use it in GitHub Desktop.
Save alexminza/767deb764b18e0d3f730fe33a93078e1 to your computer and use it in GitHub Desktop.
WordPress translate__ shortcode
<?php
//https://codex.wordpress.org/Function_Reference/shortcode_atts
$args = shortcode_atts(
array(
'text' => '',
'domain' => 'default',
), $atts, 'translate__');
//https://developer.wordpress.org/reference/functions/__/
return __($args['text'], $args['domain']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment