How to add shortcodes to WordPress themes?

Friends, today I am going to tell you how you can add Shortcodes to your WordPress Theme. First let us see what is the meaning of wp shortcodes in Hindi, that is, what is the meaning of wp shortcode in Hindi.

What is WP Shortcode?

Shortcodes are special tags that when added to your post, get replaced with other content when viewing the post on the website.

For example, if someone adds the [simple_wptree] shortcode to a post, the visitor sees a sitemap instead of the shortcode. Here, the pre-defined content takes the place of the shortcode.

You must have added such WP Shortcode in the post, here we will see how to add this WP shortcode in WordPress theme?

How to use WP Shortcode in WP Theme?

WordPress’  do_shortcode() function allows you to easily add a WP shortcode anywhere in your theme. This will replace the shortcode with pre-defined content.

To use shortcodes, add the following code to your theme:

<?php echo do_shortcode("[shortcode]"); ?>

Type your shortcode here [example_shortcode].

Leave a Comment