文件操作 - cpt.php
返回文件管理
返回主菜单
删除本文件
文件: /root/Desktop/OLD/plugin-wordpress/metform/base/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(); }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件