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
| // Register Custom Post Type | |
| function partner() { | |
| $labels = array( | |
| 'name' => _x( 'partner', 'Post Type General Name', 'partner' ), | |
| 'singular_name' => _x( 'partner', 'Post Type Singular Name', 'partner' ), | |
| 'menu_name' => __( 'Partner', 'partner' ), | |
| 'name_admin_bar' => __( 'Partners', 'partner' ), | |
| 'archives' => __( 'Item Archives', 'partner' ), | |
| 'attributes' => __( 'Item Attributes', 'partner' ), |
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 | |
| // Register Custom Post Type | |
| function quote() { | |
| $labels = array( | |
| 'name' => _x( 'quote', 'Post Type General Name', 'quote' ), | |
| 'singular_name' => _x( 'quote', 'Post Type Singular Name', 'quote' ), | |
| 'menu_name' => __( 'Quote', 'quote' ), | |
| 'name_admin_bar' => __( 'Quote', 'quote' ), | |
| 'archives' => __( 'Item Archives', 'quote' ), |
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
| /* | |
| This .scss loop will create "margin helpers" and "padding helpers" for use in your web projects. | |
| It will generate several classes such as: | |
| .m-r-10 which gives margin-right 10 pixels. | |
| .m-r-15 gives MARGIN to the RIGHT 15 pixels. | |
| .m-t-15 gives MARGIN to the TOP 15 pixels and so on. | |
| .p-b-5 gives PADDING to the BOTTOM of 5 pixels | |
| .p-l-40 gives PADDING to the LEFT of 40 pixels |
NewerOlder