Title: Custom Posts
Last modified: August 21, 2016

---

# Custom Posts

 *  [toposscz](https://wordpress.org/support/users/toposscz/)
 * (@toposscz)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/custom-posts-10/)
 * Could you add support for Custom Posts?
 * [http://codex.wordpress.org/Post_Types#Custom_Post_Types](http://codex.wordpress.org/Post_Types#Custom_Post_Types)
 * [https://wordpress.org/plugins/jetpack-markdown/](https://wordpress.org/plugins/jetpack-markdown/)

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

 *  Thread Starter [toposscz](https://wordpress.org/support/users/toposscz/)
 * (@toposscz)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/custom-posts-10/#post-5013289)
 * I found [http://wordpress.org/plugins/jetpack-markdown-support/](http://wordpress.org/plugins/jetpack-markdown-support/)
 *  [404](https://wordpress.org/support/users/ahspw/)
 * (@ahspw)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/custom-posts-10/#post-5013387)
 * If you’re happy with the plugin you found, that’s good news.
    If you prefer to
   have this feature built into Jetpack Markdown, please post your request on [Jetpack forums](http://wordpress.org/support/plugin/jetpack).
 *  [404](https://wordpress.org/support/users/ahspw/)
 * (@ahspw)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/custom-posts-10/#post-5013389)
 *  Thread Starter [toposscz](https://wordpress.org/support/users/toposscz/)
 * (@toposscz)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/custom-posts-10/#post-5013536)
 * Could you add this functions to your plugin? Could you test with Pods Framework?
 *     ```
       function get_public_post_types() {
       	$post_types = get_post_types( array(
       		'public' => true
       	) );
   
       	return $post_types;
       }
   
       /**
        * Add post type support for Markdown if a post
        * type is public and has editor support.
        *
        * @since 1.0.0
        * @uses post_type_supports()
        * @uses add_post_type_support()
       */
       function add_post_type_support() {
       	foreach ( $this->get_public_post_types() as $post_type ) {
       		if ( post_type_supports( $post_type, 'editor' ) ) {
       			add_post_type_support( $post_type, 'wpcom-markdown' );
       		}
       	}
       }
       ```
   
 * _[Moderator Note: Please post code & markup between backticks or use the code
   button. Your posted code may now have been permanently damaged by the forum’s
   parser.]_
 *  [404](https://wordpress.org/support/users/ahspw/)
 * (@ahspw)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/custom-posts-10/#post-5013538)
 * Actually, I don’t develop this plugin. If your read the description, it clearly
   says that this plugin is the (almost) untouched module from [Jetpack](http://wordpress.org/plugins/jetpack/).
 * Please ask Jetpack team on the [forums](https://wordpress.org/support/topic/custom-posts-10/wordpress.org/support/plugin/jetpack?output_format=md).
 *  [thinwybk](https://wordpress.org/support/users/thinwybk/)
 * (@thinwybk)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/custom-posts-10/#post-5013596)
 * Using “Jetpack Markdown” + “Jetpack Markdown Support” whould be oversized for
   me. I would prefer to have the custom post type support build into “JP Markdown”
   as well.

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

The topic ‘Custom Posts’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/jetpack-markdown.svg)
 * [JP Markdown](https://wordpress.org/plugins/jetpack-markdown/)
 * [Support Threads](https://wordpress.org/support/plugin/jetpack-markdown/)
 * [Active Topics](https://wordpress.org/support/plugin/jetpack-markdown/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/jetpack-markdown/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/jetpack-markdown/reviews/)

 * 6 replies
 * 3 participants
 * Last reply from: [thinwybk](https://wordpress.org/support/users/thinwybk/)
 * Last activity: [11 years, 6 months ago](https://wordpress.org/support/topic/custom-posts-10/#post-5013596)
 * Status: not resolved