wpseek.com
WordPress开发者和主题制作者的搜索引擎



set_post_format › WordPress Function

Since3.1.0
已弃用n/a
set_post_format ( $post, $format )
参数: (2)
  • (int|object) $post The post for which to assign a format.
    Required: Yes
  • (string) $format A format to assign. Use an empty string or array to remove all formats from the post.
    Required: Yes
返回:
  • (array|WP_Error|false) Array of affected term IDs on success. WP_Error on error.
定义在:
文档:

Assign a format to a post



源码

function set_post_format( $post, $format ) {
	$post = get_post( $post );

	if ( ! $post ) {
		return new WP_Error( 'invalid_post', __( 'Invalid post.' ) );
	}

	if ( ! empty( $format ) ) {
		$format = sanitize_key( $format );
		if ( 'standard' === $format || ! in_array( $format, get_post_format_slugs(), true ) ) {
			$format = '';
		} else {
			$format = 'post-format-' . $format;
		}
	}

	return wp_set_post_terms( $post->ID, $format, 'post_format' );
}