6 Snippets
<10 Favourites
10+ Downloads

Disable Wordpress image compression

// Disable image compression add_filter( 'jpeg_quality', 'smashing_jpeg_quality' ); function smashing_jpeg_quality() { return 100; } // Disable…

Custom drag and drop

Allows you to drag and drop to reorder posts in the WP backend.

Failed login: Don't show if username is correct

If a user's login fails, don't tell them whether the username or password was incorrect

Remove image link from media uploads

Older versions of WordPress automatically linked the image to the media file.

Disable WP Texturize

// Disable curly quotes remove_filter( 'the_content', 'wptexturize' );