Advertisement
artemsemkin

Fix sorting in admin panel for Intuitive Custom Posts Order plugin

Jan 7th, 2024 (edited)
1,774
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. <?php
  2.  
  3. // Temporary fix for Intuitive Custom Posts Order plugin
  4. add_action( 'admin_init', 'arts_hicpo_fix_capabilities' );
  5. function arts_hicpo_fix_capabilities() {
  6.   $administrator = get_role( 'administrator' );
  7.   if ( $administrator ) {
  8.     $administrator->add_cap( 'hicpo_load_script_css' );
  9.   }
  10.  
  11.   $editor = get_role( 'editor' );
  12.   if ( $editor ) {
  13.     $editor->add_cap( 'hicpo_load_script_css' );
  14.   }
  15. }
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement