Advertisement
wclovers

Untitled

Jul 11th, 2023
685
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. add_filter( 'wcfm_is_allow_wpeditor_media_buttons', function($allow) {
  2.     global $wp;
  3.  
  4.     if( isset( $wp->query_vars['wcfm-products-manage'] ) ) {
  5.         $allow = false;
  6.     }
  7.  
  8.     return $allow;
  9. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement