芝麻web文件管理V1.00
编辑当前文件:/home/projzpbv/public_html/wp-content/plugins/ninja-forms/includes/Abstracts/Metabox.php
_id = strtolower( get_class( $this ) ); add_action('init', [$this, 'abstractInit'], 5); add_action( 'save_post', array( $this, '_save_post' ) ); add_action( 'add_meta_boxes', array( $this, 'add_meta_boxes' ) ); } /** * Initialize properties at WP `init-5` action hook * * Set translatable properties - _title * * @return void */ public function abstractInit(): void { $this->_title = esc_html__( 'Metabox', 'ninja-forms' ); } public function add_meta_boxes() { add_meta_box( $this->_id, $this->_title, array( $this, $this->_callback ), $this->_post_types, $this->_context, $this->_priority, $this->_callback_args ); } abstract public function render_metabox( $post, $metabox ); public function _save_post( $post_id ) { // If this is an autosave, our form has not been submitted, so we don't want to do anything. if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) return; $this->save_post( $post_id ); } protected function save_post( $post_id ) { // This section intentionally left blank. } }