This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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, |
NewerOlder