From 1a27fc3e3517c2ab6aefdb6ccefdf1d05ec2025e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87a=C4=9Fda=C5=9F=20Da=C4=9F?= Date: Tue, 12 Sep 2023 12:45:49 +0300 Subject: [PATCH] Callback function is not exist --- includes/admin/admin-internal-post-type.php | 1 - 1 file changed, 1 deletion(-) diff --git a/includes/admin/admin-internal-post-type.php b/includes/admin/admin-internal-post-type.php index abbe7ad5..8b67f09b 100644 --- a/includes/admin/admin-internal-post-type.php +++ b/includes/admin/admin-internal-post-type.php @@ -43,7 +43,6 @@ class ACF_Admin_Internal_Post_Type { */ public function __construct() { add_action( 'current_screen', array( $this, 'current_screen' ) ); - add_action( 'save_post_' . $this->post_type, array( $this, 'save_post' ), 10, 2 ); add_action( 'wp_ajax_acf/link_field_groups', array( $this, 'ajax_link_field_groups' ) ); add_filter( 'post_updated_messages', array( $this, 'post_updated_messages' ) ); add_filter( 'use_block_editor_for_post_type', array( $this, 'use_block_editor_for_post_type' ), 10, 2 );