if ( has_tag ('bleh'))
{
echo '<body ' . body_class( 'tag-bleh' ) . '>';
}
or if you prefer
if ( has_tag ('bleh'))
{
?>
<body <?php body_class( 'tag-bleh' ); ?>>
<?php
}
if ( has_tag ('bleh'))
{
echo '<body ' . body_class( 'tag-bleh' ) . '>';
}
or if you prefer
if ( has_tag ('bleh'))
{
?>
<body <?php body_class( 'tag-bleh' ); ?>>
<?php
}