Web Dev Snippets

A collection of (mostly) WordPress/ClassicPress-related snippets and references I’ve found useful and worth keeping where I can find them. Feel free to use what you like, and point me to some other snippets or references.

Add Theme Support for Title Tag

It used to be that the way to add the Title Tag to WP sites was to add this in the theme’s header.php: <title><?php wp_title(); ?></title> [...]
Template Tags, WP/CP | Type: PHP

Audio Embed

See result on nmctr.org
Media | Type: Other

B&W Image to Color on Hover

Cool little bit of CSS magic. img.saturation { filter: saturate(0); } /*turns color image into B&W*/ img.saturation:hover { filter: saturate(1); } /*restores color*/
CSS | Type: CSS

Basic WP-query

As basic as it gets, for clarity's sake.
WP Query | Type: PHP