From 8b77c79ffad167aa268d04558d6568619796f588 Mon Sep 17 00:00:00 2001 From: Vincent Klaiber Date: Mon, 23 Oct 2023 07:21:04 +0200 Subject: [PATCH] Added disableMediaUpload to docs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b76c83e9..c2a6a438 100644 --- a/README.md +++ b/README.md @@ -321,9 +321,9 @@ use Extended\ACF\Fields\WysiwygEditor; WysiwygEditor::make('Content') ->instructions('Add the text content.') - ->mediaUpload(false) ->tabs('visual') // all, text, visual (default) ->toolbar(['bold', 'italic', 'link']) // aligncenter, alignleft, alignright, blockquote, bold, bullist, charmap, forecolor, formatselect, fullscreen, hr, indent, italic, link, numlist, outdent, pastetext, redo, removeformat, spellchecker, strikethrough, underline, undo, wp_adv, wp_help, wp_more + ->disableMediaUpload() ->lazyLoad() ->required() ```