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…
Chris Key
PRO
<10
Custom drag and drop
Allows you to drag and drop to reorder posts in the WP backend.
Chris Key
PRO
<10
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
Chris Key
PRO
<10
Disable WP Texturize
// Disable curly quotes remove_filter( 'the_content', 'wptexturize' );
Chris Key
PRO
<10
Remove image link from media uploads
Older versions of WordPress automatically linked the image to the media file.
Chris Key
PRO
<10