30 lines
508 B
PHP
30 lines
508 B
PHP
<?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 {
|
|
|
|
|
|
} |