wordpress - How can I allow link tags and attributes with wp_kses? -


i'm trying output link on website, wp_kses not allowing it. doing wrong in $allowed_html array?

$allowed_html   =   array( 'a' => array(     'href' => true,     'title' => true, ), 'abbr' => array(     'title' => true, ), 'acronym' => array(     'title' => true, ), 'b' => array(), 'blockquote' => array(     'cite' => true, ), 'cite' => array(), 'code' => array(), 'del' => array(     'datetime' => true, ), 'em' => array(), 'i' => array(), 'q' => array(     'cite' => true, ), 'strike' => array(), 'strong' => array(), ); 

how allow link?


Comments

Popular posts from this blog

javascript - Confirm a form & display message if form is valid with JQuery -

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

ionic framework - Meteor - Error: Failed to execute 'insertBefore' on 'Node' -