I’m new to WordPress.org and currently I’m making a food recipe website. What I want to do is to create a menu with different categories, eg Pork, Seafood, beef etc and when I clicked into each categories, it links to a page with a whole page of different images with the food names under each image, and when you click an image, you get directed to the page containing that food recipe.
I’m just wondering how can I add multiple images links with food name under them in a single page?
You have two options which I’ll call the “quick and dirty” and the “sustainable.”
Quick and Dirty
You could manually-create the Categories Page with many left-aligned images with captions and the Link URL field for each image linked to a set of pages where you repeat that process with images linking to individual recipes.
If you have a small, set number of recipes, this will get the job done, but if you plan on adding, editing, or removing categories and recipes, this solution will be borderline-impossible to maintain. Which leads us to…
Sustainable
This requires significantly more upfront work and WordPress know-how, but will serve you well. Here’s how I would handle it.
register_post_type()
.Create a new “Food Type” custom taxonomy to the Recipes post type with
register_taxonomy()
.Install the Taxonomy Images plugin.
VOILA!