mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
4 lines
158 B
Text
4 lines
158 B
Text
add_filter( 'dgwt/wcas/form/magnifier_ico', function ( $html, $class ) {
|
|
$html = '<i class="fa fa-search ' . $class . '"></i>';
|
|
return $html;
|
|
}, 10, 2 );
|