/*
Theme Name: Uncode Child
Description: Child theme for Uncode theme
Author: Undsgn™
Author URI: http://www.undsgn.com
Template: uncode
Version: 1.0.0
Text Domain: uncode
*/
/**********************
*
* Filter menu type according with post ID (or any other condition)
* @param string   $val The default menu type
* @return $val
*
**********************/
add_filter('option_uncode', 'uncode_child_filter_display_menu');
function uncode_child_filter_display_menu( $val ){
    global $post;
    $ids = array(84257);
    if ( $post && in_array( $post->ID, $ids ) ) {
        $val['_uncode_headers'] = 'menu-overlay';
    }
    return $val;
}