Skip to content

Instantly share code, notes, and snippets.

View micalexander's full-sized avatar

Michael Alexander micalexander

View GitHub Profile
@micalexander
micalexander / wp-first-initial-sort.php
Last active December 16, 2015 23:09
wordpress:snippet:query args by first initial of lastname
<?php
$args = array(
'post_type' => 'this-post',
'meta_query' => array(
array(
'key' => 'this-post-last-name',
'value' => array( 'L', chr(ord('L')+1) ),
'orderby' => 'meta_value',
'compare' => 'BETWEEN',
'order' => 'ASC'