Skip to content

Instantly share code, notes, and snippets.

@psteinweber
Last active September 25, 2015 15:48
Show Gist options
  • Save psteinweber/946121 to your computer and use it in GitHub Desktop.
Save psteinweber/946121 to your computer and use it in GitHub Desktop.
/*--------------------------------------------------*/
/* remove byline from page */
/*--------------------------------------------------*/
function custom_body_class($classes) {
if (is_page()) {
$classes[] .= 'hide_meta';
}
return $classes;
}
add_filter('thesis_body_classes', 'custom_body_class');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment