Skip to content

Instantly share code, notes, and snippets.

@MilenFrom
Created February 1, 2022 22:28
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 MilenFrom/57fb0a9a9fd4da843f83e31a3ca058ba to your computer and use it in GitHub Desktop.
Save MilenFrom/57fb0a9a9fd4da843f83e31a3ca058ba to your computer and use it in GitHub Desktop.
Shortcode as anonymous function
<?php
add_shortcode('simple-test', function(){
$st_data = 'data';
return $st_data;
});
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment