Skip to content

Instantly share code, notes, and snippets.

View tyxla's full-sized avatar

Marin Atanasov tyxla

View GitHub Profile
@tyxla
tyxla / gist:a1539561803de4d03c11
Last active August 29, 2015 14:08
Get a page by its template, and optionally by additional criteria
<?php
# Get a page by its template, and optionally by additional criteria
function crb_get_page_by_template($template, $additional_meta = array()) {
// the query for the page template
$meta_query = array(
array(
'key' => '_wp_page_template',
'value' => $template,