admin管理员组文章数量:1429844
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
本文标签: wp cliwpcli create post and media import
版权声明:本文标题:wp cli - wp-cli create post and media import 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745499872a2660980.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论