golden hour
/home/godaofbq/besthyperbaric.com/wp-content/plugins/metform/base
⬆️ Go Up
Upload
File/Folder
Size
Actions
.htaccess
420 B
Del
OK
api.php
1.04 KB
Del
OK
common.php
589 B
Del
OK
cpt.php
390 B
Del
OK
shortcode.php
7.92 KB
Del
OK
Edit: 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