@brankoconjic
Hey,
I wonder if this code snippet might help>
function custom_sinatra_nav_menu_social_icons( $item_output, $item, $depth, $args ) {
if ( false !== strpos( $args->menu_class, 'sinatra-socials-menu' ) && false !== strpos( $item_output, 'naver.com' ) ) {
$item_output = str_replace( $args->link_after, '</span>NAVER ICON GOES HERE', $item_output );
}
return $item_output;
}
add_filter( 'walker_nav_menu_start_el', 'custom_sinatra_nav_menu_social_icons', 10, 4 );