Date: [date]
Between us [company name] and you [customer name].
In short; neither of us will share any confidential information about each-other, by any means, with anyone else.
| // MENU ITEMS (MI) | |
| "mi_busy" = "PHP Monitor is busy..."; | |
| "mi_unsure" = "We are not sure what version of PHP you are running."; | |
| "mi_php_version" = "Global version: PHP"; | |
| "mi_php_switch" = "Switch to PHP"; | |
| "mi_php_unsupported" = "Some installed PHP versions are not displayed."; | |
| "mi_php_broken_1" = "Oof! It appears your PHP installation is broken..."; | |
| "mi_php_broken_2" = "Try running `php -v` in your terminal."; | |
| "mi_php_broken_3" = "You could also try switching to another version."; |
I hereby claim:
To claim this, I am signing this object:
| .modal { | |
| text-align: center; | |
| padding: 0!important; | |
| } | |
| .modal:before { | |
| content: ''; | |
| display: inline-block; | |
| height: 100%; | |
| vertical-align: middle; |
| submodules[alias] | |
| # View abbreviated SHA, description, and history graph of the latest 20 commits | |
| l = log --pretty=oneline -n 20 --graph --abbrev-commit | |
| # View the current working tree status using the short format | |
| s = status -s | |
| # Show the diff between the latest commit and the current state | |
| d = !"git diff-index --quiet HEAD -- || clear; git --no-pager diff --patch-with-stat" |
| # Shell prompt based on the Solarized Dark theme. | |
| # Screenshot: http://i.imgur.com/EkEtphC.png | |
| # Heavily inspired by @necolas’s prompt: https://github.com/necolas/dotfiles | |
| # iTerm → Profiles → Text → use 13pt Monaco with 1.1 vertical spacing. | |
| if [[ $COLORTERM = gnome-* && $TERM = xterm ]] && infocmp gnome-256color >/dev/null 2>&1; then | |
| export TERM='gnome-256color'; | |
| elif infocmp xterm-256color >/dev/null 2>&1; then | |
| export TERM='xterm-256color'; | |
| fi; |
| /** name: on the repo is what you call later down in the "require" section. | |
| It does not necessarily need to be the repo user and repo name, but is good practice! :) | |
| **/ | |
| { | |
| "repositories": [ | |
| { | |
| "type": "composer", | |
| "url": "http://wpackagist.org" | |
| }, |
| <?php | |
| add_action( 'init', 'my_custom_page_word' ); | |
| function my_custom_page_word() { | |
| global $wp_rewrite; // Get the global wordpress rewrite-rules/settings | |
| // Change the base pagination property which sets the wordpress pagination slug. | |
| $wp_rewrite->pagination_base = "new-slug"; //where new-slug is the slug you want to use ;) | |
| } |