Advertisement
connorblikre

nwse code for dennis

Feb 5th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1. // PLACE THESE FUNCTIONS INSIDE THE __construct() function
  2. add_filter( 'page_attributes_dropdown_pages_args', array(&$this, 'filter_post_show_all_parents'), 1, 1 );
  3. add_filter( 'quick_edit_dropdown_pages_args', array(&$this, 'filter_post_show_all_parents'), 1, 1 );
  4.  
  5. // PLACE THIS FUNCTION OUTSIDE OF THE __construct() FUNCTION BUT INSIDE THE Theme_Loader CLASS
  6. public function filter_post_show_all_parents($args){
  7.     $args['post_status'] = array(
  8.         'publish',
  9.         'draft',
  10.         'private'
  11.     );
  12.     return $args;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement