Skip to content

Commit

Permalink
Fix syntax issues in functions.php
Browse files Browse the repository at this point in the history
  • Loading branch information
vinkla committed Apr 11, 2024
1 parent 39130ce commit 370562e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions public/themes/wordplate/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@

printf(
'<style> .login h1 a { %s } </style>',
implode(';', $styles)
implode(';', $styles),
);
});

Expand All @@ -101,5 +101,5 @@
return $mailer;
});

add_filter('wp_mail_from', fn () => env('MAIL_FROM_ADDRESS', 'hello@example.com'));
add_filter('wp_mail_from_name', fn () => env('MAIL_FROM_NAME', 'Example'));
add_filter('wp_mail_from', fn() => env('MAIL_FROM_ADDRESS', 'hello@example.com'));
add_filter('wp_mail_from_name', fn() => env('MAIL_FROM_NAME', 'Example'));

0 comments on commit 370562e

Please sign in to comment.