Basic Usage - aaemnnosttv/shortcode-alias-api GitHub Wiki
Add a Shortcode Alias
add_shortcode_alias( $tag, $alias_of, $defaults = [ ] );
$tag
- the shortcode tag/name to create.
$alias_of
- the tag of the shortcode you wish to alias, aka the target shortcode.
$defaults
- optional an array of defaults to use for this alias.
Remove a Shortcode Alias
remove_shortcode_alias( $tag );
$tag
- the shortcode tag/name to remove.