Skip to content

Instantly share code, notes, and snippets.

@dsyddall
dsyddall / functions.php
Last active August 29, 2015 14:13
Lock aspect ratio in WooCommerce Measurement Price Calculator
<?php
function display_aspect_ratio() {
global $post;
if ($post) {
$aspect = get_post_meta($post->ID, 'aspect_ratio', true);
if ($aspect) {
echo '<input type="hidden" id="aspect_ratio" name="aspect_ratio" value="' . esc_attr( $aspect ) . '" />';
}
}