Skip to content

Instantly share code, notes, and snippets.

@cointilt
Created October 11, 2011 08:15
Show Gist options
  • Save cointilt/1277547 to your computer and use it in GitHub Desktop.
Save cointilt/1277547 to your computer and use it in GitHub Desktop.
Enable file uploads in WordPress Posts with enctype
add_action ( 'post_edit_form_tag', 'post_edit_form_tag' );
function post_edit_form_tag()
{
echo ' enctype="multipart/form-data"';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment