Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save codersaiful/50b70066267690cd8a10989b7a58aab4 to your computer and use it in GitHub Desktop.
Save codersaiful/50b70066267690cd8a10989b7a58aab4 to your computer and use it in GitHub Desktop.
<?php
add_filter('wpt_table_row_attr', function($attr, $row_object){
$product_id = $row_object->product_id;
// var_dump($attr, $row_object);
$color_code = '#aabbcc';
return "style=background-color:$color_code;";
return $attr;
},10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment