Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. /**
  2. * Filters whether to remove the 'Months' drop-down from the post list table.
  3. *
  4. * @since 4.2.0
  5. *
  6. * @param bool $disable Whether to disable the drop-down. Default false.
  7. * @param string $post_type The post type.
  8. */
  9.  
  10. if ( apply_filters( 'disable_months_dropdown', false, $post_type ) ) {
  11. return;
  12. }
  13.  
  14. add_filter( 'disable_months_dropdown', function( $disable, $post_type )
  15. {
  16. return 'event' === $post_type ? true :$disable;
  17. }, 999, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement