Bug in Display After Content plugin?

I tried to insert a horizontal line in html before the text in the plugin and when I save it, the <hr> code simply is deleted. How do I do this? What’s the secret? The plugin accepted an embedded link.

1 Like

Display After Content plugin allows limited HTML.
You can use all tags that are returned by wp_kses_allowed_html() with the addition of some HTML for tables and lists.

You can change wp_kses_allowed_html() output using a filter (you can put the code in a utility plugin or in your theme functions.php file).

add_filter( 'wp_kses_allowed_html', 'xsx_add_hr', 10, 1 );

function xsx_add_hr( $html ) {
	$html['hr'] = array();
	return $html;
}
2 Likes

Thank you! I appreciate this. I even understood it. :wink:

2 Likes

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.