You have to build a website for a restaurant and you have chosen WordPress to do the job. It’s time to add restaurant’s products but you have to classify them. Well there’s a very easy way to do that.
What products does a restaurant have? Well, I think a regular restaurant has Breakfast, Launch, Dinner, Beverage and Dessert.
Open functions.php from your wordpress theme directory and add the following code:
function create_menu_categories() {
register_taxonomy('menu_type', 'post', array('hierarchical'=>false, 'label'=>'Menu type', 'query_var'=>true, 'rewrite'=>true));
}
add_action('init', 'create_menu_categories', 0);
Query for posts, using custom tag
To display only posts that have a specific tag from your custom taxonomies, place the code [..] curious to read more?
Cippo posted it on
19/07/2010,
under: Wordpress.
I was thinking to give some help regarding WordPress 3.0 theme development using custom post types and other cool new features so I will show you how to create a custom Wordperss 3.0 portfolio theme.
You will be able to add and manage portfolio items, testimonials, posts thumbnail and more to come.
Warning, design is not included
How to create a WordPress portfolio theme
To do this, you have to get your hands dirty
Alright, what do we need to accomplish this? For the beginning we will need to create the following files: [..] curious to read more?
Cippo posted it on
16/07/2010,
under: Tutorials.
Why should you choose a freelancer over a web design company?
Here are some reasons:
Price
You would like to pay less for a website? Usually a freelance web designer charges less than a web design firm because he doesn’t have employees or subcontractors. Usually the freelancer’s workplace is [..] curious to read more?
Monday, 28th June the website www.simplyprofitable.co.uk was released. What’s it all about?
Simply Profitable is a boutique consultancy which enables successful business owners understand their business’ finances and easily increase profits in their business.
I am waiting for the MODx CMS to release the revolution version. The MODx CMS sounds very promising. You can check the road map at http://svn.modxcms.com/docs/display/revolution/Roadmap
There are many saying that wordpress is mainly for blogs while MODx is better for building web pages.
So I downloaded the MODx Revolution 2.0.0-rc-2 and played around a bit. At a first glance it seems complicated but if you spend few minutes with it, things get clearer.
I will keep you updated.