Ok, here is the answer to my own question--wifi and lan appear to need to be on separate networks. I put wifi on 192.168.1.51 and wired on 192.168.0.51. Here are the config files.
cat /etc/config/wireless
config wifi-device radio0
option type mac80211
option channel auto
option macaddr 38:83:45:d3:10:4c
option hwmode 11ng
option htmode HT20
list ht_capab SHORT-GI-20
list ht_capab SHORT-GI-40
list ht_capab RX-STBC1
list ht_capab DSSS_CCK-40
# REMOVE THIS LINE TO ENABLE WIFI:
# option disabled 1
config wifi-iface
option device radio0
option network wireless
option mode sta
option ssid Omnibus1
option encryption none
cat /etc/config/network
config 'interface' 'loopback'
option 'ifname' 'lo'
option 'proto' 'static'
option 'ipaddr' '127.0.0.1'
option 'netmask' '255.0.0.0'
config 'interface' 'lan'
option 'ifname' 'eth0'
option 'type' 'bridge'
option 'proto' 'static'
option 'ipaddr' '192.168.0.51'
option 'netmask' '255.255.255.0'
option 'dns' '8.8.8.8'
option 'gateway' '192.168.1.1'
config 'interface' 'wireless'
option 'ifname' 'radio0'
# option 'proto' 'dhcp'
option 'proto' 'static'
option 'ipaddr' '192.168.1.51'
option 'netmask' '255.255.255.0'
option 'dns' '8.8.8.8'
option 'gateway' '192.168.1.1'
With this setup, with no ethernet connected to the WR703N, I can ssh to 192.168.1.51 and can browse to the same address to view web pages.