forked from WordPress/gutenberg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin-compat.php
34 lines (33 loc) · 1.21 KB
/
plugin-compat.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
* This file includes a set of temporary fixes for known compatibility
* issues with third-party plugins. These fixes likely should not to be
* included with core merge.
*
* @package gutenberg
* @since 1.3.0
*
* The goal is to provide a fix so
* 1. users of the plugin can continue to use and test Gutenberg,
* 2. provide a reference for developers of the plugin to work with, and
* 3. provide reference for other plugin developers on how they might work
* with Gutenberg.
*/
/**
* WPCOM markdown support causes issues when saving a Gutenberg post by
* stripping out the <p> tags. This adds a filter prior to saving the post via
* REST API to disable markdown support. Disables markdown support provided by
* plugins Jetpack, JP-Markdown, and WP Editor.MD
*
* @since 1.3.0
*
* @param array $post Post object which contains content to check for block.
* @return array $post Post object.
*/
function gutenberg_remove_wpcom_markdown_support( $post ) {
if ( class_exists( 'WPCom_Markdown' ) && has_blocks( $post['post_content'] ) ) {
WPCom_Markdown::get_instance()->unload_markdown_for_posts();
}
return $post;
}
add_filter( 'wp_insert_post_data', 'gutenberg_remove_wpcom_markdown_support', 9 );