最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

wp cli - wp-cli create post and media import

programmeradmin0浏览0评论

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 badges
Add a comment  | 

1 Answer 1

Reset to default 3

There 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

发布评论

评论列表(0)

  1. 暂无评论