Skip to content

Instantly share code, notes, and snippets.

View schneidan's full-sized avatar

Daniel J. Schneider schneidan

View GitHub Profile
@schneidan
schneidan / dp-whitelabel-template.html
Last active January 6, 2016 22:16
A scrappy whitelabel template for DenverPost.com-esque pages (Bartertown look, rev 3.0)
<!-- ################################################################################################ -->
<!-- -->
<!-- THIS FILE IS FAR FROM COMPLETE -- DON'T USE IT WITHOUT FIXING EVERYTHING!! -->
<!-- -->
<!-- Things to fix: -->
<!-- Everything in the meta twitter: tags! -->
<!-- Everything in the Facebook og: meta tags -->
<!-- All the other meta tags! -->
<!-- The Title! -->
<!-- The Omniture tags!
@danielbachhuber
danielbachhuber / gist:7126249
Last active December 21, 2021 15:46
Include posts from authors in the search results where either their display name or user login matches the query string
<?php
/**
* Include posts from authors in the search results where
* either their display name or user login matches the query string
*
* @author danielbachhuber
*/
add_filter( 'posts_search', 'db_filter_authors_search' );
function db_filter_authors_search( $posts_search ) {