Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- * Add your own functions here. You can also copy some of the theme functions into this file.
- * Wordpress will use those functions instead of the original functions then.
- */
- // Register new icon as a theme icon
- function avia_add_custom_icon($icons) {
- $icons['slack-icon'] = array( 'font' =>'slack-icon', 'icon' => 'uf198');
- return $icons;
- }
- add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
- // Add new icon as an option for social icons
- function avia_add_custom_social_icon($icons) {
- $icons['slack-icon'] = 'slack-icon';
- return $icons;
- }
- add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
Add Comment
Please, Sign In to add comment