git rm -r --cached .
git add .
git commit -am 'git cache refreshed'
git push
<?php | |
add_action( 'wp_login', 'record_current_datetime_at_login', 10, 2 ); | |
/** | |
* Record Time and Date at login as a readable string. | |
* Save in user meta. | |
* | |
* @param string $user_login login_name | |
* @param object $user WP_User object | |
* @return string Date, time, timezone, offset | |
*/ |
I hereby claim:
- I am pbrocks on github.
- I am pbrocks (https://keybase.io/pbrocks) on keybase.
- I have a public key ASBYH7106UoO1BOaVfFV_hG-aL3h8ZIaC1v2rnHgprJaAgo
To claim this, I am signing this object:
<?php | |
/** | |
* Adjustments to /wp-admin/users.php screen. | |
* | |
* @package WP_List_Table | |
*/ | |
add_filter( 'manage_users_columns', 'add_id_any_position_of_users_columns' ); | |
add_filter( 'manage_users_columns', 'nickname_manage_users_columns', 10, 1 ); | |
add_filter( 'manage_users_custom_column', 'nickname_manage_users_custom_column', 10, 3 ); |
<?php | |
function the_field_url( $selector, $post_id=0, $format_value=true ) { | |
echo esc_url( get_field( $selector, $post_id, $format_value ) ); | |
} | |
function the_field_url_raw( $selector, $post_id=0, $format_value=true ) { | |
echo esc_url_raw( get_field( $selector, $post_id, $format_value ) ); | |
} |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>SwiperJS - PBrocks - Sample</title> | |
<link | |
rel="stylesheet" | |
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css" | |
/> | |
<link |
My objective is to have some production files ignored on specific branches. Git doesn't allow to do it.
My solution is to make a general .gitignore
file and add .gitignore.branch_name
files for the branches I want to add specific file exclusion.
I'll use post-checkout hook to copy those .gitignore.branch_name in place
of .git/info/exclude
each time I go to the branch with git checkout branch_name
.
As of WordPress 5.8 release, we encourage using block.json
file metadata as the canonical way to register block types. We have been working on Block Metadata specification for a few major WordPress releases, and we reached the point where all planned features are in place.
Example:
notice/block.json
{
"apiVersion": 2,
#!/bin/bash | |
## Demo script to show how to leverage Azure DevOps CLI Extension to call DevOps REST API directly | |
## without the need for PAT token | |
# configuration | |
YOUR_AZURE_DEV_OPS_ORG='' | |
YOUR_AZURE_DEV_OPS_PROJECT_NAME='' | |
# Reverse Engineered this part by looking into Azure DevOps CLI Extension | |
# https://github.com/Azure/azure-devops-cli-extension/blob/8cf32a41126b2b66f130843d4d16de19290052b9/azure-devops/azext_devops/devops_sdk/client.py#L71 |