Title: &#8220;Post format&#8221; for submitted posts
Last modified: January 21, 2023

---

# “Post format” for submitted posts

 *  Resolved [joxyzan](https://wordpress.org/support/users/joxyzhan/)
 * (@joxyzhan)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/post-format-for-submitted-posts/)
 * Thank you for a plugin that is quite easy to use! Although complex in its workings…
 * I managed to set the plugin up quickly on my site, but ran into a problem: I 
   need the “Post format” to be automatically set to “Image”, not “Standard”. Is
   that something I can achieve with the free version?
   PS. I have set the “Default
   Post Format” in WordPress “Writing Settings” under to “Image”, but that doesn’t
   help with USP.

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [Jeff Starr](https://wordpress.org/support/users/specialk/)
 * (@specialk)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/post-format-for-submitted-posts/#post-16396390)
 * Glad to help.
 * It’s not a built-in feature, but possible w/ the following code:
 *     ```wp-block-code
       function usp_set_post_format($post) {
   
       	$id = isset($post['id']) ? $post['id'] : null;
   
       	if ($id) set_post_format($id, 'YOUR_POST_FORMAT');
   
       }
       add_action('usp_insert_after', 'usp_set_post_format');
       ```
   
 * Replace `YOUR_POST_FORMAT` with the name of the post format that you want to 
   use. This code can be added to your theme functions.php or added via simple custom
   plugin. Here is a guide that explains more about [adding custom code to WordPress](https://digwp.com/2022/12/custom-code-wordpress/).
   Let me know if any questions.
 *  Thread Starter [joxyzan](https://wordpress.org/support/users/joxyzhan/)
 * (@joxyzhan)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/post-format-for-submitted-posts/#post-16397865)
 * Thank you very much Jeff!
   That worked fine! ⌊👍⌉</img>
    -  This reply was modified 3 years, 2 months ago by [joxyzan](https://wordpress.org/support/users/joxyzhan/).

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘“Post format” for submitted posts’ is closed to new replies.

 * ![](https://ps.w.org/user-submitted-posts/assets/icon-256x256.png?rev=2567685)
 * [User Submitted Posts – Enable Users to Submit Posts from the Front End](https://wordpress.org/plugins/user-submitted-posts/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/user-submitted-posts/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/user-submitted-posts/)
 * [Active Topics](https://wordpress.org/support/plugin/user-submitted-posts/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/user-submitted-posts/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/user-submitted-posts/reviews/)

## Tags

 * [post format](https://wordpress.org/support/topic-tag/post-format/)

 * 2 replies
 * 2 participants
 * Last reply from: [joxyzan](https://wordpress.org/support/users/joxyzhan/)
 * Last activity: [3 years, 2 months ago](https://wordpress.org/support/topic/post-format-for-submitted-posts/#post-16397865)
 * Status: resolved