🏠 Root
/
home
/
a
/
r
/
t
/
artorgp
/
parankhoit
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
helpers
/
Editing: string-helper.php
<?php /** * A helper object for string operations. * * @package Yoast\YoastSEO\Helpers */ namespace Yoast\WP\SEO\Helpers; /** * Class String_Helper */ class String_Helper { /** * Strips all HTML tags including script and style. * * @param string $string The string to strip the tags from. * * @codeCoverageIgnore It only wraps a WordPress function. * * @return string The processed string. */ public function strip_all_tags( $string ) { return \wp_strip_all_tags( $string ); } }
Save
Cancel