5 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…

<10

Disable WP Texturize

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

<10

Remove image link from media uploads

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

<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

<10

Login 'Remember Me' checked by default

'Remember Me' checked by default

<10