gdrts_slider_review_loop_list_item_args

Developer Knowledge Level

This content is intended for WordPress developers, and it may require coding knowledge of WordPress, PHP, and JavaScript. Code examples provided here may contain errors or needs some additional coding. Make sure to test the code before using it on a live website!

This filter (gdrts_slider_review_loop_list_item_args) is used to filter arguments for the list loop for a single item rendering. This filter is fired once for each item before that item is rendered within the list loop template.

This filter provides 1 argument – the array with the list of arguments. The list of values in this array depends on the plugin settings, and you can print the list to see what you can change. Some values changes will have no effect changing using this filter, but some can be changed: style or colours.

Example

add_filter('gdrts_slider_review_loop_list_item_args', 'custom__gdrts_slider_review_loop_list_item_args');
function custom__gdrts_slider_review_loop_list_item_args($args) {
  // modify the $args array //
  $args['style_show_grid'] = false;

  // return thee $args array//
  return $args;
}
1
0
790
Rate this reference

You are not allowed to rate this post.

Leave a Comment