Created
February 19, 2016 03:35
-
-
Save mrbobbybryant/bcf41ccb33433770acc1 to your computer and use it in GitHub Desktop.
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 | |
| <label class="layout-label"> | |
| <input type="radio" | |
| name="package_template_layout" | |
| class="layout-input" | |
| value="three-column-layout" | |
| <?php checked( $layout, "three-column-layout" ); ?>/> | |
| <img class="layout-image" src="<?php echo get_template_directory_uri() . '/images/package-layouts/InvestorPlace_Layout_1.png'; ?>" width="1182" height="1294" > | |
| </label> | |
| <label class="layout-label"> | |
| <input type="radio" | |
| name="package_template_layout" | |
| class="layout-input" | |
| value="single-column-layout" | |
| <?php checked( $layout, "single-column-layout" ); ?>/> | |
| <img class="layout-image" src="<?php echo get_template_directory_uri() . '/images/package-layouts/InvestorPlace_Layout_2.png'; ?>" width="1182" height="1294" > | |
| </label> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment