Skip to content

Instantly share code, notes, and snippets.

@mrbobbybryant
Created February 19, 2016 03:35
Show Gist options
  • Select an option

  • Save mrbobbybryant/bcf41ccb33433770acc1 to your computer and use it in GitHub Desktop.

Select an option

Save mrbobbybryant/bcf41ccb33433770acc1 to your computer and use it in GitHub Desktop.
<?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