Last active
July 22, 2020 13:42
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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