Created
February 3, 2019 13:47
-
-
Save httpstersk/a05be6a9efc610de6574e7260ff56e13 to your computer and use it in GitHub Desktop.
➊➒ Get the maximum upload size allowed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { select } = wp.data; | |
const { getEditorSettings } = select( 'core/editor' ); | |
const { maxUploadFileSize } = getEditorSettings(); | |
const maxMB = Number( maxUploadFileSize / Math.pow( 1024, 2 ) ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment