How to hide get_theme_mod if field empty

$value = get_theme_mod( $name, $default );
if ($value !== $default) { 
?>
   <a href="https://wordpress.stackexchange.com/questions/88378/<?php echo $value; ?>">This is the link</a>
<?php 
}

Leave a Comment