Skip to content

Instantly share code, notes, and snippets.

View ManuFerrer094's full-sized avatar

Manu Ferrer ManuFerrer094

View GitHub Profile
@ManuFerrer094
ManuFerrer094 / wp-json-formatter
Last active November 9, 2023 10:02
WP Function to make a Json Formatter Web Based Tool
function load_json_formatter_scripts() {
wp_enqueue_script('jquery');
wp_enqueue_script('json-formatter', get_template_directory_uri() . '/json-formatter.js', array('jquery'), '1.0', true);
wp_enqueue_script('jsonlint', 'https://cdnjs.cloudflare.com/ajax/libs/jsonlint/1.6.0/jsonlint.min.js', array('jquery'), '1.6.0', true);
}
add_action('wp_enqueue_scripts', 'load_json_formatter_scripts');
function json_formatter_shortcode() {
ob_start();
?>