Problem adding column to WC Subscription
I am having trouble adding custom column to Woocommerce Subscription.
My codes are as below:
add_filter( 'manage_shop_subscription_posts_columns', function ($columns) {
$columns['my_field'] = __('My Field');
return $columns;
}, 10);
What could be wrong with my code? I fail to understand why it is not working.
Topic woocommerce-offtopic columns custom-post-types Wordpress
Category Web