public static function SchemaNameBase::neverExplode in Schema.org Metatag 7
Nested elements that cannot be exploded.
Return value
array Array of keys that might contain commas, or otherwise cannot be exploded.
1 call to SchemaNameBase::neverExplode()
- SchemaNameBase::processItem in src/
SchemaNameBase.php - Process an individual item.
File
- src/
SchemaNameBase.php, line 174
Class
- SchemaNameBase
- All Schema.org tags should extend this class.
Code
public static function neverExplode() {
return [
'streetAddress',
'reviewBody',
'recipeInstructions',
];
}