Yes, adding another widget does work but then why have your theme? I want your theme to have HTML capabilities.
Using Our Focus as a sample, I found these changes to the functions.php to work:
<!– FOCUS HEADING –>
<?php
if( !empty($instance[‘text’]) ):
echo htmlspecialchars_decode(apply_filters(‘widget_title’, $instance[‘text’]));
endif;
And…
function update($new_instance, $old_instance)
{
$instance = $old_instance;
..
$instance[‘text’] = wp_filter_post_kses($new_instance[‘text’]);
..
return $instance;
}
This works. Also I would like to see that INPUT text field changed to a TEXTAREA. Just makes sense…
My problem is that I can’t figure out how to get these changes into my child functions.php.