Advertisement
michaellevelup

Change header account icon

Feb 9th, 2023
925
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. add_filter( 'kadence_svg_icon', 'king_change_header_account_icon', 4, 99 );
  2.  
  3. function king_change_header_account_icon($output, $icon, $icon_title, $base) {
  4.     if ( $icon === 'account' ) {
  5.         $output = '<span class="kadence-svg-iconset' . ( $base ? ' svg-baseline' : '' ) . '">';
  6.         $output .= 'ENTER YOUR CUSTOM SVG CONTENT HERE';
  7.         $output .= '</span>';
  8.     }
  9.     return $output;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement