Skip to content

Instantly share code, notes, and snippets.

@tollmanz
Created March 26, 2012 21:43
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 tollmanz/2209983 to your computer and use it in GitHub Desktop.
Save tollmanz/2209983 to your computer and use it in GitHub Desktop.
Add enctype to post form
<?php
function zt_add_enctype {
echo ' enctype="multipart/form-data"';
}
add_action( 'post_edit_form_tag', 'zt_add_enctype' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment