/* Plugin Name: WP Custom Values by Preetam Soni Plugin URI: https://customvalues.preetamsoni.com Description: Short description of plugin Version: 1.0 Author: Preetam Soni Author URI: https://preetamsoni.com License: GPL2 */ if ( ! defined( 'ABSPATH' ) ) exit; define( 'WPCV_VERSION', '1.0.0' ); define( 'WPCV_PATH', plugin_dir_path( __FILE__ ) ); define( 'WPCV_URL', plugin_dir_url( __FILE__ ) ); define( 'WPCV_TABLE_FOLDERS', 'wpcv_folders' ); define( 'WPCV_TABLE_VALUES', 'wpcv_values' ); require_once WPCV_PATH . 'includes/class-db.php'; require_once WPCV_PATH . 'includes/class-merge-tags.php'; require_once WPCV_PATH . 'includes/class-rest-api.php'; require_once WPCV_PATH . 'includes/class-shortcode.php'; require_once WPCV_PATH . 'admin/class-admin.php'; register_activation_hook( __FILE__, array( 'WPCV_DB', 'install' ) ); add_action( 'plugins_loaded', 'wpcv_init' ); function wpcv_init() { WPCV_Merge_Tags::init(); WPCV_REST_API::init(); WPCV_Shortcode::init(); if ( is_admin() ) { WPCV_Admin::init(); } } Hello world! – customvalues.preetamsoni.com

Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

Comments

One response to “Hello world!”

  1. A WordPress Commenter Avatar

    Hi, this is a comment.
    To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
    Commenter avatars come from Gravatar.

Leave a Reply

Your email address will not be published. Required fields are marked *