# EDD Price Shortcode

You may show the price of any EDD product anywhere by using the \[\[edd\_price\]\] shortcode. It requires a product ID and optionally takes a price ID if you have variable pricing.

The simplest version looks like this:

```
[edd_price id=&#039;114&#039;]
```

The number 114 is the product ID. You can find the ID for a given product by visiting that product&#039;s admin page and either looking at the address bar in your browser:
![](https://easydigitaldownloads.com/wp-content/uploads/2022/07/6184cc2959542.png)

Or by looking in the Download Settings meta box on the side:

![](https://easydigitaldownloads.com/wp-content/uploads/2022/01/Screenshot-2025-01-07-122238-800x451.png)### Variable Pricing

If you have variable pricing turned on you&#039;ll need to specify which price you want to print. That would look something like this:

```
[edd_price id=&#039;114&#039; price_id=&#039;2&#039;]
```

You can get the price ID in the Price Options tab:

![](https://easydigitaldownloads.com/wp-content/uploads/2022/01/Markup-on-2025-01-07-at-191457-800x312.png)### Output

The output will be something similar to this:

```
&lt;span id=&quot;edd_price_114&quot;&gt;$10.00&lt;/span&gt;
```

Where $ is the currency symbol ($ in this case)