Title: How to create ShortCode
Last modified: July 18, 2022

---

# How to create ShortCode

 *  [mabufoysal](https://wordpress.org/support/users/mabufoysal/)
 * (@mabufoysal)
 * [4 years ago](https://wordpress.org/support/topic/how-to-create-shortcode-3/)
 * I am learning Plugin Development. How to create ShortCode like the image ?
 * [https://ibb.co/TbQdQ2v](https://ibb.co/TbQdQ2v)

Viewing 1 replies (of 1 total)

 *  [Sayedul Sayem](https://wordpress.org/support/users/sayedulsayem/)
 * (@sayedulsayem)
 * [4 years ago](https://wordpress.org/support/topic/how-to-create-shortcode-3/#post-15833448)
 * Hi [@mabufoysal](https://wordpress.org/support/users/mabufoysal/)
 * This is how you will be able to create a shortcode.
 *     ```
       add_shortcode( 'logo_showcase', 'wpsupport_logo_showcase_func' );
       function wpsupport_logo_showcase_func( $atts ) {
           $atts = shortcode_atts( array(
               'id' => ''
           ), $atts, 'logo_showcase' );
   
           // Do something
           $html = "<h2>Hello Word!</h2>"
   
           return $html;
       }
       ```
   
 * N.B. Showing shortcode in wp list table is another question or another task

Viewing 1 replies (of 1 total)

The topic ‘How to create ShortCode’ is closed to new replies.

## Tags

 * [shortcode](https://wordpress.org/support/topic-tag/shortcode/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 1 reply
 * 2 participants
 * Last reply from: [Sayedul Sayem](https://wordpress.org/support/users/sayedulsayem/)
 * Last activity: [4 years ago](https://wordpress.org/support/topic/how-to-create-shortcode-3/#post-15833448)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
