Useful Filters

You can use these filters and sample code to change some settings. It’s recommended to use a child theme and add the code to functions.php of child theme.

  1. Change number of videos in Actor page
    apply_filters('single_actor_videos_count', get_option('posts_per_page'));

    Sample code

    add_filter('single_actor_videos_count', 'single_actor_videos_count_filter');
    function single_actor_videos_count_filter($posts_per_page){
         return 10;
    }
    
  2. N/A