Show Column Headers for custom post types
-
Hello,
I’m using the latest for the moment version of the plugin and I was wondering is there any way the option “Show Column Headers” to be applied for custom post types as well?
I think this piece of code in the plugin is responsible for that option but my OOP knowledge is less than 0 and I have no idea how to call the mentioned functions from outside of the class in the theme’s functions.php
if( $type == 'post' ){ add_filter( "manage_post_posts_columns", array( $this, 'set_custom_edit_qppr_columns' ) ); add_action( "manage_post_posts_custom_column" , array( $this, 'custom_qppr_column' ), 10, 2 ); }elseif( $type == 'page' ){ //add_filter( "manage_page_pages_columns", array( $this, 'set_custom_edit_qppr_columns' ) ); //add_action( "manage_page_pages_custom_column" , array( $this, 'custom_qppr_column' ), 10, 2 ); add_filter( "manage_page_posts_columns", array( $this, 'set_custom_edit_qppr_columns' ) ); add_action( "manage_page_posts_custom_column" , array( $this, 'custom_qppr_column' ), 10, 2 ); }else{ add_filter( "manage_{$type}_posts_columns", array( $this, 'set_custom_edit_qppr_columns' ) ); add_action( "manage_{$type}_posts_custom_column" , array( $this, 'custom_qppr_column' ), 10, 2 ); add_filter( "manage_{$type}_pages_columns", array( $this, 'set_custom_edit_qppr_columns' ) ); add_action( "manage_{$type}_pages_custom_column" , array( $this, 'custom_qppr_column' ), 10, 2 ); }
https://www.ads-software.com/plugins/quick-pagepost-redirect-plugin/
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Show Column Headers for custom post types’ is closed to new replies.