List of all inbuilt WordPress shortcodes

I am newbie in wordpress but not very new.

When I came to know that wordpress have inbuilt shortcodes like audio, video, gallery, playlist.

I have searched for a list of inbuilt shortcodes that WordPress provides but I did not get anything except above can anybody provide me a link which has a list of inbuilt wp shortcodes.

And

one more thing if WordPress provide more inbuilt shortcodes are they only work in wordpress.com

I know that you guys may thing I am a fool or idiot but I want to know.

2 Answers
2

You can actually list all of the available shortcodes for your WordPress installation by using the following code:

<?php
global $shortcode_tags;
echo '<pre>'; 
print_r($shortcode_tags); 
echo '</pre>';
?>

It will show the main WordPress shortcodes plus any shortcodes for installed plugins which can be handy too!

Leave a Comment