Skip to content

Instantly share code, notes, and snippets.

View murshed's full-sized avatar

Fahim Murshed murshed

View GitHub Profile
@murshed
murshed / phone-only-login.php
Created November 10, 2020 20:57
A simple wordpress plugin to login with only phone number
<?php
/**
* Plugin Name: Phone Only Login
*/
function generateRandomString($length = 10)
{
$characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
$charactersLength = strlen($characters);
$randomString = '';
<?php
//save theme active time
function my_theme_activation_init() {
// Check if already saved the activation date & time
// to prevent over-writing if user deactive & active theme
// multiple time
if(!get_option('mytheme_activation_time', false)){