Skip to content

Instantly share code, notes, and snippets.

@httpstersk
Created February 3, 2019 13:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save httpstersk/a05be6a9efc610de6574e7260ff56e13 to your computer and use it in GitHub Desktop.
Save httpstersk/a05be6a9efc610de6574e7260ff56e13 to your computer and use it in GitHub Desktop.
➊➒ Get the maximum upload size allowed
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