gdrts_thumbs_rating_loop_single_args
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_thumbs_rating_loop_single_args) is used to filter arguments for the single item rendering.
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.
Example
add_filter('gdrts_thumbs_rating_loop_single_args', 'custom__gdrts_thumbs_rating_loop_single_args'); function custom__gdrts_thumbs_rating_loop_single_args($args) { // modify the $args array // $args['disable_rating'] = true; // return thee $args array// return $args; }