function.php içinde aşağıdaki kod exe ve swf dosyalarının yüklenmesini engelleyen kısım. Buradan exe yi kaldırırsan yükleme yapabilirsin. Wordpress güncelleme sonrası function.php değiştiğinde değişikliği tekrarlamak gerekir.
function get_allowed_mime_types( $user = null ) {
$t = wp_get_mime_types();

unset( $t['swf'], $t['exe'] );
if ( function_exists( 'current_user_can' ) )
$unfiltered = $user ? user_can( $user, 'unfiltered_html' ) : current_user_can( 'unfiltered_html' );

if ( empty( $unfiltered ) ) {
unset( $t['htm|html'], $t['js'] );
}