I want to be able to use html in my title. I found a work-around that makes use custom fields with a modification in single.php on a standard theme. X is anything but standard. Here is what I was trying to implement. Can you lend a hand?
The instructions take the <h1><php the_title(); ?></h1>
and replace it with `<?php
$html_title = get_post_meta($post->ID, “HTML_title”, true);
if ($html_title) { ?>
<h1><?php echo $html_title; ?></h1>
<?php } else { ?>
<h1><?php the_title(); ?></h1>
<?php } ?>`
Allowing a custom field called HTML_title.
I looked in the single.php file for X and found just this code. <?php x_get_view( x_get_stack(), 'wp', 'single' ); ?>
Can you tell me how to make the change I trying to accomplish?
Thanks team