Skip to content

Instantly share code, notes, and snippets.

@mathetos
Last active August 2, 2016 05:29
Show Gist options
  • Save mathetos/88d8f7cd43f1ed94e4977889ac98c034 to your computer and use it in GitHub Desktop.
Save mathetos/88d8f7cd43f1ed94e4977889ac98c034 to your computer and use it in GitHub Desktop.
Maybe Hide Title
function b16_maybe_hide_title($post) {
$hidetitle = get_post_meta( $post->ID, 'disable-title', true );
$hide = ( !empty($hidetitle) ) ? $hide = 'style="display:none;visibility:hidden" aria-hidden="true"' : '';
return $hide;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment