参数
- $post
-
(int|object) (必填) 要为其指定格式的文章。
- $format
-
(string) (必填) 要指定的格式,使用空字符串或数组从文章中删除所有格式。
返回
(array|WP_Error|false) 成功时返回受影响的 term ID 数组,出错返回 WP_Error
说明
有关支持的格式,请参阅文章格式页。
源码
更新日志
版本 | 描述 |
---|---|
3.1.0 | 开始引入 |
使用示例
基本示例
<?php /* * Set the post format of a post (in the loop). */ set_post_format($post->ID, 'gallery' ); //sets the given post to the 'gallery' format ?>