diff --git a/includes/ConvertToBlocks/PostTypeColumnSupport.php b/includes/ConvertToBlocks/PostTypeColumnSupport.php index 3c9e220..d674d50 100644 --- a/includes/ConvertToBlocks/PostTypeColumnSupport.php +++ b/includes/ConvertToBlocks/PostTypeColumnSupport.php @@ -33,6 +33,7 @@ public function register() { continue; } add_filter( "manage_{$post_type}_posts_columns", [ $this, 'update_post_columns' ], 10000 ); + add_action( "manage_{$post_type}_pages_custom_column", [ $this, 'update_post_column_value' ], 10, 2 ); add_action( "manage_{$post_type}_posts_custom_column", [ $this, 'update_post_column_value' ], 10, 2 ); } }