GochiSiyan

prevent list creation

Mar 4th, 2021 (edited)
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. add_filter('jnews_video_create_playlist',function ($args){
  2. if ($args['title']==='Favorite' || $args['title']==='Watch Later' ) {
  3. return [];
  4. }
  5. return $args;
  6. },999);
Add Comment
Please, Sign In to add comment