Yoast\WP\SEO\Helpers
String_Helper::strip_all_tags() public Yoast 1.0
Strips all HTML tags including script and style.
{} Это метод класса: String_Helper{}
Хуков нет.
Возвращает
Строку. The processed string.
Использование
$String_Helper = new String_Helper(); $String_Helper->strip_all_tags( $string );
- $string(строка) (обязательный)
- The string to strip the tags from.
Код String_Helper::strip_all_tags() String Helper::strip all tags Yoast 15.6.2
public function strip_all_tags( $string ) {
return \wp_strip_all_tags( $string );
}