Hi, if user create new post using Gravity Forms (Can upload one image only), How to get post images url only using PHP and any shortcut code (eg: http://www.mywpsite.com/content/upload/user-upload-this-image.jpg )
Hi, if user create new post using Gravity Forms (Can upload one image only), How to get post images url only using PHP and any shortcut code (eg: http://www.mywpsite.com/content/upload/user-upload-this-image.jpg )
BUMP! how Get Post Image URL
Shotcode below build a <img src="get image url uploaded via gravity form" />
{Upload image:2:full:center} = <p><img width="394" height="150" src="http://mywpsite.com/wp-content/uploads/2012/11/user-upload-via-gravity-forms.png" class="size-full aligncenter wp-image-56" /></p>
what shortcode or php code to get image url uploaded via gravity form? (URL ONLY)
Just want to make clickable image in the post entry
Instead of this:
{Upload image:2:full:center}
You can use this to get the URL:
{Upload image:2:full:url}
You will have to build your link to the image yourself, something like this:
<a href="{Upload image:2:full:url}">{Upload image:2:full:center}</a>
Hi Chris,
Jyeah done. thanks Chris
Is everything working as you expect it to right now?