From a5c2d525924d595d1e8cbf1cbc3598f5ddafeedc Mon Sep 17 00:00:00 2001 From: Muze <109952720+iammuze@users.noreply.github.com> Date: Tue, 30 Apr 2024 19:33:36 +0530 Subject: [PATCH] Update sample-plugin.php --- sample-plugin.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sample-plugin.php b/sample-plugin.php index 4f916c7..ef4069f 100644 --- a/sample-plugin.php +++ b/sample-plugin.php @@ -10,7 +10,7 @@ * Plugin Name: Add text to the top of posts * Plugin URI: https://instawp.com * Description: InstaWP Git Deployment testing - * Version: 1.0.0 + * Version: 1.0.4 * Author: Vikas * Author URI: https://instawp.com * Text Domain: instawp-sample-plugin @@ -27,8 +27,8 @@ function add_my_text($content) { // Define the text and style - $custom_text = '
New change to the plugin
'; + $custom_text = '
New change to the plugin
'; // Add the custom text to the beginning of the content return $custom_text . $content; -} \ No newline at end of file +}