MOON
Server: Apache
System: Linux nserver.cafsindia.com 4.18.0-553.104.1.lve.el8.x86_64 #1 SMP Tue Feb 10 20:07:30 UTC 2026 x86_64
User: cafsindia (1002)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: /home/cafsindia/amazeing.in/wp-content/plugins/ohio-extra/rest_api/lazy_load.php
<?php

add_action( 'rest_api_init', function () {
    register_rest_route( 'wp/v2', 'ohio_lazy_load_shortcodes', [
        'methods' => 'POST',
        'callback' => function() {
            if ( empty( $_POST['shortcode'] ) ) return '';

            $page = isset( $_POST['paged'] ) ? (int)$_POST['paged'] : 1;
            set_query_var( 'paged', $page );

            $html = do_shortcode( base64_decode( $_POST['shortcode'] ) );
            $html .= OhioLayout::get_footer_buffer_content();

            return $html;
        },
        'permission_callback' => function() {
            return true;
        }
    ]);
});