Thank you, it worked! I’ve adapted tho this:
<?php if (is_home() ) {
echo '<h1>
<span>Text </span>
Another Line</h1>' ;}
else {
$line1 = get_post_meta($post->ID, 'titleline1', true);
$line2 = get_post_meta($post->ID, 'titleline2', true);
if($line1 != ''){
echo '<h1><span>'.$line1.'</span>'.$line2.'</h1>';
} ;} ?>
I know how to do this to show the content, but I can’t figure how to put it inside the H1 tag
<?php if (is_home() ) {
echo '<h1>
<span>Learn the language. Live the culture. </span>
Study Abroad with Bridge.
<div class="clear"> </div>
</h1>' ;}
else { echo get_post_meta($post->ID, 'titleline1', true); } ?>