Skip to content

Instantly share code, notes, and snippets.

@robertuniqid
Created March 17, 2020 14:09
Show Gist options
  • Save robertuniqid/474b0fbb55c78f56d2d1f4b9aba137bc to your computer and use it in GitHub Desktop.
Save robertuniqid/474b0fbb55c78f56d2d1f4b9aba137bc to your computer and use it in GitHub Desktop.
you.growlearnteach.com - hide all restrict_manage_posts actions except 1.
<?php
add_action( 'restrict_manage_posts', function() {
remove_all_actions( 'restrict_manage_posts' );
add_action( 'restrict_manage_posts', [ wpep_content_taxonomy(), '_content_type_filtering' ] );
}, -1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment