You appear to be a bot. Output may be restricted
Description
Escaped the output.
Usage
$string = Abstract_Indexable_Tag_Presenter::escape_value( $value );
Parameters
- $value
- ( string ) required – The desired method of escaping; 'html', 'url' or 'attribute'.
Returns
string The escaped value.
Source
File name: wordpress-seo/src/presenters/abstract-indexable-tag-presenter.php
Lines:
1 to 12 of 12
protected function escape_value( $value ) { switch ( $this->escaping ) { case 'html': return \esc_html( $value ); case 'url': return \esc_url( $value ); case 'attribute': default: return \esc_attr( $value ); } }