Last active
August 2, 2016 05:29
-
-
Save mathetos/88d8f7cd43f1ed94e4977889ac98c034 to your computer and use it in GitHub Desktop.
Maybe Hide Title
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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