Skip to content

Instantly share code, notes, and snippets.

@autocircled
Last active July 22, 2020 13:42
Show Gist options
  • Save autocircled/3b3d956610431cc3e30d832fcaa719ca to your computer and use it in GitHub Desktop.
Save autocircled/3b3d956610431cc3e30d832fcaa719ca to your computer and use it in GitHub Desktop.
Add below this code to bottom of the wp-content/plugins/favorite-plugin/init.php
if( !function_exists( 'fav_table_wrapper_class' ) ){
function fav_table_wrapper_class($wrapper_class_arr, $table_ID){
if( $table_ID == get_option( 'favorite_table_id' ) ){
array_push($wrapper_class_arr, 'fav_table_list');
}
return $wrapper_class_arr;
}
add_filter('wpto_wrapper_tag_class_arr', 'fav_table_wrapper_class', 10, 2 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment