Thank you very much.
Since I am not a programmer, it took a while to read all of that ??
So, looks like I need to add a filter for Flipboard and Bloglovin icons. The example I noticed on GitHub to add LinkedIn uses Genericons.
Would the following code work (I replaced the example references to LinkedIN with Flipboard)? to add a custom social icon for Flipboard?
function jetpackme_flipboard( $html_array ) {
return
$html_array +
array(
25 => // This key can be modified to change the order the new item will appear in the list
'<a title="Flipboard" '
. 'href="https://flipboard.com/@Backpacking73vi" '
. 'class="genericon genericon-linkedin" target="_blank">'
. '<span class="screen-reader-text">Flipboard</span></a>'
);
}
add_filter( 'jetpack_social_media_icons_widget_array', 'jetpackme_flipboard' );
Or do I need to do something else (for instance what happens with the code that Flipboard provided – pasted in my previous message)?
Could you please suggest.
Thank you
Kind regards