BossBey File Manager
PHP:
8.3.6
OS:
Linux
User:
www-data
Root
/
var
/
www
/
html
/
theaffinitydental
/
wp-content
/
plugins
/
metform
/
base
📤 Upload
📝 New File
📁 New Folder
Close
Editing: cpt.php
<?php namespace MetForm\Base; defined( 'ABSPATH' ) || exit; abstract Class Cpt{ public function __construct() { $name = $this->get_name(); $args = $this->post_type(); add_action('init',function() use($name,$args) { register_post_type( $name, $args ); }); } public abstract function post_type(); }
Save
Cancel