芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/www/wp-content/plugins/metform/core/forms/auto-increment-entry.php
id = get_option($this->last_entry_key); add_action('metform/after_load', [$this, 'update_previous_posts_entry_ids']); } public function update_previous_posts_entry_ids() { if (empty(get_option($this->last_entry_key))) { $all_post_ids = get_posts(array( 'fields' => 'ids', 'posts_per_page' => -1, 'orderby' => 'ID', 'order' => 'ASC', 'post_type' => 'metform-entry' )); foreach ($all_post_ids as $key => $id) { update_post_meta($id, $this->entry_key, ++$key); $this->id = $key; } update_option($this->last_entry_key, $this->id); } } }