The Theme Force Framework is the most comprehensive solution for restaurant websites based on WordPress. It is structured as a modular feature-set highly relevant to industry needs. This read-me only provides usage instructions, please see the developer page below for more information.
(if the image doesn't completely load or has a pink stripe, reload the page)
- Must-Read Developer Homepage: http://www.theme-force.com/framework-developers/
- GitHub Homepage: https://github.com/themeforce/framework
- Discussion & News: http://www.facebook.com/themeforce
In order to make use of our complete feature set, you will need to use the Options Framework within your theme (maintained by @devinsays), it can be found here: https://github.com/devinsays/options-framework-plugin
The contents of this framework should be pulled into a folder called themeforce within your theme:
../wp-content/themes/your-theme/themeforce/
We understand you may not want to use all the features, so it's only normal that you reduce the number of queries that your theme executes. Our modular approach means that you can do just that. Just add any (or all) of the functions below to grab what you need (within functions.php).
// Core Features
add_theme_support( 'tf_food_menu' );
add_theme_support( 'tf_events' );
// Widgets
add_theme_support( 'tf_widget_opening_times' );
add_theme_support( 'tf_widget_google_maps' );
add_theme_support( 'tf_widget_payments' );
// 3rd Party API's
add_theme_support( 'tf_foursquare' );
add_theme_support( 'tf_gowalla' );
add_theme_support( 'tf_yelp' );
add_theme_support( 'tf_qype' );
add_theme_support( 'tf_mailchimp' );
The main file that brings everything together within the "themeforce/* folder is is:
themeforce/themeforce.php
If you'd like to learn how to use the Theme Force framework (i.e. shortcodes, widgets, etc.), please consult the manual:
We'd love to have your input, and if you're interested in contributing code, we'd love that too. Head over to http://www.theme-force.com/framework-developers/ for more information.
We can't actually help you with CSS, XHTML, PHP & JS so there's a certain degree of self-reliance that's required if you'd like to implement. It doesn't mean we won't guide you on the right path, but we'd like to keep the discussions relevant to bugs, enhancements and features.