Skip to content

Instantly share code, notes, and snippets.

View hiteshwp's full-sized avatar

Hitesh Prajapati hiteshwp

View GitHub Profile
@hiteshwp
hiteshwp / functions.php
Created July 29, 2019 14:44 — forked from UltraSimplified/functions.php
Override the standard WordPress password messages
/*
* Change the password reset text
*
**/
function change_password_reset_text_filter( $translated_text, $untranslated_text, $domain ) {
switch( $untranslated_text ) {
case 'Enter your new password below.':
@hiteshwp
hiteshwp / functions.php
Created July 2, 2019 05:07 — forked from ideag/functions.php
Wordpress frontend file uploading
<?php
// simple frontend file upload
// written by Arūnas Liuiza | tinyStudio | wp.tribuna.lt
// Usage: use [tiny_upload] shortcode or get_tiny_upload()/the_tiny_upload() template tags
// Localization: replace 'theme' with your text domain string.
// ======= UPLOAD FORM =====>
// return form #1
@hiteshwp
hiteshwp / country
Created June 13, 2019 10:35 — forked from psamaan/country
Countries Select Option List
<select name="Country">
<option value="" selected="selected">Select Country</option>
<option value="United States">United States</option>
<option value="United Kingdom">United Kingdom</option>
<option value="Afghanistan">Afghanistan</option>
<option value="Albania">Albania</option>
<option value="Algeria">Algeria</option>
<option value="American Samoa">American Samoa</option>
<option value="Andorra">Andorra</option>
<option value="Angola">Angola</option>