Support post type admin column for hierarchical
post type download
#9746
Labels
type-request
workflow-pending-triage
Items that need to be triaged and reviewed before they are worked on.
Support Post Type Admin Column for hierarchical Post Type
Currently, the plugin uses the action hook
manage_posts_custom_column
. This hook only supports the default case. No data will appear in the post type admin column if a developer changes the post type attribute tohierarchical
. It can be solved either by changing the hook tomanage_download_posts_custom_column
or adding the hookadd_action( 'manage_pages_custom_column', 'edd_render_download_columns', 10, 2 );
. The first one is recommended.The text was updated successfully, but these errors were encountered: