-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwritebuddy.php
More file actions
30 lines (24 loc) · 978 Bytes
/
writebuddy.php
File metadata and controls
30 lines (24 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
/**
* Plugin Name: WriteBuddy AI – ChatGPT-Powered Writing Assistant
* Plugin URI: https://writebuddyai.com/
* Description: WriteBuddy AI is a WordPress plugin that generates high-quality content and images using ChatGPT and OpenAI technology. It's a chat-based writing assistant that saves you time and boosts your productivity.
* Author: Bengal Studio
* Author URI: https://bengal-studio.com/
* Text Domain: writebuddy
* Domain Path: /languages
* Version: 0.1.0
*
* @package WriteBuddy
*/
namespace BengalStudio;
define('WRITEBUDDY_AI_FILE', __FILE__);
require_once plugin_dir_path( WRITEBUDDY_AI_FILE ) . 'includes/class-writebuddy.php';
// Function to initialize WriteBuddy and return the singleton instance
function writebuddy() {
// Get the singleton instance of WriteBuddy
$instance = WriteBuddy::get_instance();
// Return the singleton instance
return $instance;
}
writebuddy();