Skip to content

Instantly share code, notes, and snippets.

@spigotdesign
Last active June 17, 2016 02:58
Show Gist options
  • Save spigotdesign/a83499e706a565208859 to your computer and use it in GitHub Desktop.
Save spigotdesign/a83499e706a565208859 to your computer and use it in GitHub Desktop.
Theme layout mod for Hybrid Core layouts featrue
<?php
/**
* Modifies the theme layout
*
* @access public
* @param string $layout
* @return string
*/
function infusion_mod_theme_layout( $layout ) {
if (is_page_template( 'page-templates/landingpage.php' ) ) {
$layout = '1c';
}
return $layout;
}
add_filter( 'theme_mod_theme_layout', 'infusion_mod_theme_layout', 15 );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment