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.

Search Form for CPT

To add a search form that searches only a particular post type, not your entire website. <form id="cptsearch" action="<?php echo home_url(); ?>" method="get">     <input name="s" type="text"> [...]
Search | Type: PHP

Shim Plugin for ACF Pro with ClassicPress

The issue is with the last function in /plugins/advanced-custom-fields-pro/pro/blocks.php, which calls for functions ClassicPress does not have. I put this into an mu-plugin on my WebJournal, [...]
ACF, PHP, WP/CP | Type: PHP

Sliding Image Background

Cool effect if you have a good enough reason and a wide enough image.
CSS, CSS3, Images | Type: CSS

SmoothScroll to Top

Positions element at top on scrolling using jQuery scrollTop.
Javascript, jQuery | Type: Javascript