Home / Admin / Unminify Schema Output in Source Code
Duplicate Snippet

Embed Snippet on Your Site

Unminify Schema Output in Source Code

This filter can be used to unminify schema output in the source code.

10+
Code Preview
php
<?php
add_filter( 'aioseo_schema_json_flags', function() {
	return JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE;
} );

Comments

Add a Comment