first commit

This commit is contained in:
2024-07-31 13:12:38 +07:00
commit b4e8cbe182
10213 changed files with 3125839 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<?php
/**
* Abstract class for register post type
*
* @package WordPress
* @subpackage Student2 Plugin
* @author Shahbaz Ahmed <shahbazahmed9@hotmail.com>
* @version 1.0
*/
namespace THINKAIPLUGIN\Inc\Abstracts;
if ( ! function_exists( 'add_action' ) ) {
exit;
}
/**
* Abstract Post Type
* Implemented by classes using the same CRUD(s) pattern.
*
* @version 2.6.0
* @package THINKAIPLUGIN/Abstracts
* @category Abstract Class
* @author Wptech
*/
abstract class Metabox {
}