custer query to find admin email

This commit is contained in:
asus
2024-04-02 18:55:59 +02:00
parent ccb800c203
commit 67bebe4cfc

View File

@@ -61,7 +61,8 @@ function find_user_post_url($user_id) {
*
*/
function find_admin_email($user_id) {
return '';
$admin_email = get_option( 'admin_email' );
return $admin_email;
}