Skip to content

Instantly share code, notes, and snippets.

View wykydtronik's full-sized avatar
🎯
Focusing on Kafka

TЯON|K wykydtronik

🎯
Focusing on Kafka
View GitHub Profile
@wykydtronik
wykydtronik / gist:371b19c759e990e82eba306c47ad4626
Last active April 15, 2017 05:12
Adding A Drop Down Menu To personal_options
<?php // Personal Options
add_action( 'personal_options_update', 'save_custom_profile_fields' );
add_action( 'edit_user_profile_update', 'save_custom_profile_fields' );
function save_custom_profile_fields( $user_id ) {
update_user_meta( $user_id, 'teampage', $_POST['teampage'], get_user_meta( $user_id, 'teampage', true ) );
}
add_action( 'personal_options', 'add_profile_options');
function add_profile_options( $profileuser ) {
@wykydtronik
wykydtronik / cli
Last active March 16, 2018 23:28
pg_restore example windows
pg_restore.exe --host "awsrds.c8klwajefe444.us-west-2.rds.amazonaws.com" --port "5432" --username "username" -n public --dbname "exampledb" --exit-on-error --verbose --no-acl --no-owner "C:\\sqldump\\largedatabase.backup"