From 50f379ab78dde9a9a221305c7eb35493c6497e44 Mon Sep 17 00:00:00 2001 From: Andrew Duthie Date: Mon, 25 Feb 2019 11:31:54 -0500 Subject: [PATCH] Documentation: Update FAQ to avoid reference to deprecated function --- docs/designers-developers/faq.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/designers-developers/faq.md b/docs/designers-developers/faq.md index 4fcccc36723bf..eb4b21b2a1a6c 100644 --- a/docs/designers-developers/faq.md +++ b/docs/designers-developers/faq.md @@ -365,8 +365,7 @@ var blocks = wp.blocks.parse( postContent ); In PHP: ```php -$blocks = gutenberg_parse_blocks( $post_content ); // plugin -$blocks = parse_blocks( $post_content ); // WordPress 5.0 +$blocks = parse_blocks( $post_content ); ``` ## Why should I start using this once released?