Advertisement
BakerMan

Force list widget to show 15 events

Jan 13th, 2014
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. add_filter( 'widget_display_callback', 'force_list_widget_to_show_15', 10, 2 );
  2.  
  3. function force_list_widget_to_show_15( $instance, $widget ) {
  4.     if ( 'tribe-events-adv-list-widget' !== $widget->id_base ) return $instance;
  5.     $instance['limit'] = 15;
  6.     return $instance;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement