Problem to create a different social icon
-
Good day,
I try to create a differnt social profile with a code like this one:
<?php
function my_wp_about_author_social($social){
$social[‘my_service_key’] = array(
‘link’=>’https://www.mysocial.com/%%usersocia%%’,
‘title’=>’Social’,
‘icon’=>’https://www.mysitepath.com/icon.png’
);
return ‘<div class=”wp-about-author-containter-%%bordertype%%” style=”background-color:%%borderbg%%;”><div class=”wp-about-author-pic”>%%authorpic%%</div><div class=”wp-about-author-text”>%%content%%</div></div>’;
}
add_filter(‘wp_about_author_get_socials’, ‘my_wp_about_author_social’);
?>I put it into the functions.php of theme, but I don’t work. Why?
- The topic ‘Problem to create a different social icon’ is closed to new replies.