This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ssh-keygen -t rsa -b 4096 -N '' -C "[email protected]" -f ~/.ssh/id_rsa | |
| ssh-keygen -t rsa -b 4096 -N '' -C "[email protected]" -f ~/.ssh/github_rsa | |
| ssh-keygen -t rsa -b 4096 -N '' -C "[email protected]" -f ~/.ssh/mozilla_rsa |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Define the 'Portfolio' post type. This is used to represent galleries | |
| // of photos. This will be our top-level custom post type menu | |
| $args = array( | |
| 'labels' => array( | |
| 'all_items' => 'Gallery', | |
| 'menu_name' => 'Portfolio', | |
| 'singular_name' => 'Gallery', | |
| 'edit_item' => 'Edit Gallery', | |
| 'new_item' => 'New Gallery', |