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
/* | |
* BOOTSTRAP TYPOGRAPHY SPACING FIX | |
*/ | |
h1, .h1, | |
h2, .h2, | |
h3, .h3 { | |
margin-bottom: @line-height-computed; | |
} | |
h4, .h4, |
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
// Reference: http://www.blackdogfoundry.com/blog/moving-repository-from-bitbucket-to-github/ | |
// See also: http://www.paulund.co.uk/change-url-of-git-repository | |
$ cd $HOME/Code/repo-directory | |
$ git remote rename origin bitbucket | |
$ git remote add origin https://github.com/mandiwise/awesome-new-repo.git | |
$ git push origin master | |
$ git remote rm bitbucket |
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
function add_membership_support() { | |
$labels = array( | |
'name' => _x( 'DTS Premium', 'post type general name', 'sage' ), | |
'singular_name' => _x( 'Premium Post', 'post type singular name', 'sage' ), | |
'menu_name' => _x( 'Premium Posts', 'admin menu', 'sage' ), | |
'name_admin_bar' => _x( 'Premium Post', 'add new on admin bar', 'sage' ), | |
'add_new' => _x( 'Add New', 'product', 'sage' ), | |
'add_new_item' => __( 'Add New Premium Post', 'sage' ), | |
'new_item' => __( 'New Premium Post', 'sage' ), | |
'edit_item' => __( 'Edit Premium Post', 'sage' ), |
OlderNewer