File "shortcode.php"

Full path: /home/kosmetik/public_html/wp-includes/blocks/shortcode.php
File size: 320 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php

function render_block_core_shortcode($attributes, $content)
{
    return wpautop($content);
}
function register_block_core_shortcode()
{
    register_block_type_from_metadata(__DIR__ . '/shortcode', array('render_callback' => 'render_block_core_shortcode'));
}
add_action('init', 'register_block_core_shortcode');