Advertisement
artemsemkin

Kinsey theme: unset featured videos from Portfolio List Backgrounds widget

Jan 9th, 2025 (edited)
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. <?php
  2.  
  3. add_filter('arts/elementor/kinsey_widget_portfolio_list_backgrounds/queried_posts', 'custom_kinsey_empty_video_url_field_portfolio_list_background_widget');
  4. function custom_kinsey_empty_video_url_field_portfolio_list_background_widget( $posts ) {
  5.   $posts = array_map(
  6.     function( $post ) {
  7.       $post['video_url'] = '';
  8.  
  9.       return $post;
  10.     },
  11.     $posts
  12.   );
  13.  
  14.   return $posts;
  15. }
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement