at path:
ROOT
/
wp-content
/
plugins
/
betterdocs
/
betterdocs.php
run:
R
W
Run
assets
DIR
2026-06-16 01:07:15
R
W
Run
includes
DIR
2026-06-16 01:07:15
R
W
Run
languages
DIR
2026-06-16 01:07:15
R
W
Run
vendor
DIR
2026-06-16 01:07:15
R
W
Run
views
DIR
2026-06-16 01:07:15
R
W
Run
LICENSE.txt
17.67 KB
2026-06-16 01:07:15
R
W
Run
Delete
Rename
README.txt
22.33 KB
2026-06-16 01:07:15
R
W
Run
Delete
Rename
betterdocs.php
1.32 KB
2026-06-16 01:07:15
R
W
Run
Delete
Rename
index.php
27 By
2026-06-16 01:07:15
R
W
Run
Delete
Rename
uninstall.php
1.02 KB
2026-06-16 01:07:15
R
W
Run
Delete
Rename
wpml-config.xml
3.57 KB
2026-06-16 01:07:15
R
W
Run
Delete
Rename
error_log
up
📄
betterdocs.php
Save
<?php /** * Plugin Name: BetterDocs * Plugin URI: https://betterdocs.co/ * Description: Create stunning Knowledge base & FAQs for your WordPress website and reduce support pressure with the help of BetterDocs. Get access to amazing templates and create fully customizable KB with AI Write. * Version: 3.8.15 * Author: WPDeveloper * Author URI: https://wpdeveloper.com * License: GPL-3.0+ * License URI: http://www.gnu.org/licenses/gpl-3.0.txt * Text Domain: betterdocs * Domain Path: /languages */ // If this file is called directly, abort. use WPDeveloper\BetterDocs\Plugin; defined( 'ABSPATH' ) || exit; define( 'BETTERDOCS_PLUGIN_FILE', __FILE__ ); require_once __DIR__ . '/includes/v2x-compatibility.php'; require_once __DIR__ . '/vendor/autoload.php'; /** * Initiate the BetterDocs Plugin * * @return Plugin * @since 2.5.0 */ function betterdocs(): Plugin { /** * Remove PRO Functionalities if pro is not updated. */ if ( ! function_exists( 'betterdocs_pro' ) ) { remove_action( 'betterdocs_init', 'run_betterdocs_pro' ); } return Plugin::get_instance(); } /** * Initialize BetterDocs (Free) * Here, begins the execution of the plugin. * * Returns the main instance of BetterDocs. * * @return Plugin * @since 3.0 */ betterdocs();