I would like to create a post and insert a url as an image, right now I have this, it works but creates a gallery block, instead I would just like to create a simple image block . What is the correct syntax to post just an image in "post_content" ?
wp post create --post_title="test" --post_content="[gallery ids='$(wp media import .jpg --porcelain)']"
Thanks !
I would like to create a post and insert a url as an image, right now I have this, it works but creates a gallery block, instead I would just like to create a simple image block . What is the correct syntax to post just an image in "post_content" ?
wp post create --post_title="test" --post_content="[gallery ids='$(wp media import https://ring.cdandlp/113719298.jpg --porcelain)']"
Thanks !
Share Improve this question asked May 13, 2019 at 5:05 Finger twistFinger twist 1334 bronze badges1 Answer
Reset to default 3There is just [gallery]
to display images BUT you can specify in which size the image(s) will be displayed. By default it's size='thumbnail'
. Simply set it to size='full'
to just get one full-sized image:
$ wp post create --post_title="Foobar" --post_content="[gallery ids='$(wp media import https://dummyimage/600x400/000/fff.jpg --porcelain)' size='full']"
More gallery shortcode options can be found on wordpress: https://en.support.wordpress/gallery/#gallery-shortcode