Hi,
By export you probably mean print. You see, you can export WordPress content in Tools → Export, but reading your question I think you are looking for to print the food menu.
To do so, you can try some plugin or use some custom CSS such as:
@media print {
* {
background: #fff !important;
color: #000 !important;
font-family: sans-serif;
letter-spacing: 0;
}
div {
font-weight: 400 !important;
}
h2, h3 {
font-weight: 700 !important;
}
h2 {
font-size: 2em;
margin: 0;
}
body {
padding: 0;
}
.site,
.site .food-menu-items {
width: 100%;
max-width: none;
}
img,
.entry-media,
.site-header,
.breadcrumbs-container,
.site-footer,
.menu-group-nav-container,
.menu-group-nav-link,
.content-area > *:not(.food-menu-items) {
display: none;
}
.items .menu-items {
width: 100%;
margin: 0;
}
.items .menu-items > * {
float: none;
width: 100%;
margin: 0 0 20px;
}
.items .entry-summary {
margin: 0;
}
.menu-group-header {
padding: 20px 0 0;
border-top: 1px solid
}
}
Please note I provide support via https://support.webmandesign.eu/ Also, please read https://support.webmandesign.eu/modifications/
Best regards,
Oliver