You appear to be a bot. Output may be restricted
Description
Converts the meta noindex value to the indexable value.
Usage
$bool|null = Indexable_Term_Builder::get_noindex_value( $meta_value );
Parameters
- $meta_value
- ( string ) required – Term meta to base the value on.
Returns
bool|null
Source
File name: wordpress-seo/src/builders/indexable-term-builder.php
Lines:
1 to 11 of 11
protected function get_noindex_value( $meta_value ) { if ( $meta_value === 'noindex' ) { return true; } if ( $meta_value === 'index' ) { return false; } return null; }