PluginProbe ʕ •ᴥ•ʔ
AI Agent by SiteGround / 1.1.5
AI Agent by SiteGround v1.1.5
1.2.5 1.2.4 1.2.3 1.2.2 1.2.1 1.2.0 1.1.9 1.1.8 1.1.7 1.1.6 1.1.5 1.1.4 trunk 1.1.3
sg-ai-studio / assets / blocks / aistudio-prompt / render.php
sg-ai-studio / assets / blocks / aistudio-prompt Last commit date
block.json 2 months ago index.css 2 months ago index.js 2 months ago render.php 2 months ago
render.php
23 lines
1 <?php
2 /**
3 * Server-side rendering for the AI Studio prompt block
4 *
5 * @package SG_AI_Studio
6 */
7
8 if ( ! defined( 'ABSPATH' ) ) {
9 exit;
10 }
11
12 /**
13 * Renders the AI Studio prompt block on the server.
14 *
15 * @param array $attributes Block attributes.
16 * @return string Rendered block HTML.
17 */
18 function sg_ai_studio_render_prompt_block( $attributes ) {
19 // This block is only for generating content in the editor.
20 // It doesn't need to display anything on the frontend.
21 return '';
22 }
23