Codex tools: Log in
Languages: English • (Add your language)
Contents |
Set the post format of a post. This can be called and used anywhere if a post Object and the format is provided.
<?php set_post_format( $post , $format); ?>
<?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 ?>
set_post_format() is located in wp-includes/post.php.
Post Formats: set_post_format(), get_post_format(), has_post_format()