Tag: function

How to use wp_kses function

<?php
 $copyright = get_theme_mod('kotha_footer_copyright');

 $allowed_tags = array(
    'strong' => array(),
    'a' => array(
       'href' => array(),
       'title' => array()
    )
 );
 echo wp_kses( $copyright, $allowed_tags ); ?>

More info