I am wanting to test the value of the "Order" field of a page. Do I use $menu_order to do this? I tried this, but it did not work:
if( $menu_order == 1 ){
echo '<div class="product first">';
} else {
echo '<div class="product">';
}
This actually applies the class="product first" to all the items, not just the one with the order value of 1.