Skip to content

Instantly share code, notes, and snippets.

@eri-trabiccolo
Created May 18, 2015 18:12
Show Gist options
  • Save eri-trabiccolo/9e6153bbbcfe924a4f2d to your computer and use it in GitHub Desktop.
Save eri-trabiccolo/9e6153bbbcfe924a4f2d to your computer and use it in GitHub Desktop.
Add sticky-header offset
add_filter('tc_customizr_script_params', 'add_sticky_offset_param');
function add_sticky_offset_param( $params){
$params['stickyCustomOffset'] = '45'; /* in pixels */
return $params;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment