Previously, we saw how Wordpress can capably handle data more like a small-scale CMS than a traditional blog, assuming the developer is willing to get creative with some Template Tags and The Loop. With that in mind, let’s move toward a more sophisticated homepage concept.
Sample scenario: a client needs your help in realizing his dodgy dream of starting an online men’s magazine in the vein of GQ or Details. His existing site already runs the standard Wordpress blog format, but now he’s seeking a more ambitious, exploded-view layout to accommodate a variety of content modules and features somewhere between Nirali and Talking Points Memo.
With his love of hair gel, gossip and designer messenger bags, it’s not surprising our client’s new publication will be called Mimbo. He’s even sketched out a wireframe for the homepage (click for demo):
It’s nothing too polished yet, just a grid-based concept illustrating the main content components we’ll need to tease out of Wordpress: “Lead Story”, “Last Three Features”, “News”, “Contributors” and so on. How do we tie all this together on one page? Let’s start at the top and explore each module step by step:
- Logo and TaglineIn the upper corner of Mimbo’s layout, you’ll see our branding which is really just the site title (”Mimbo”) and tagline (”by men, for men”) and can be edited from the control panel:

The functions are standard to any Wordpress installation and can be added to your page like this:
<a href="/"><?php bloginfo('name'); ?></a> <?php bloginfo('description'); ?> - Search moduleYou probably already knew that the search bar in the upper right corner originates from a PHP-include which looks like this:
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
You can always style the search bar to your liking, or create a custom search page.
- Lead Story ModuleEach issue of Mimbo will feature a Lead Story module with a photo, a category title, an article title and an excerpt.
Let’s start with the photo. First find an appropriate image and resize it to 269×178. Next, upload it to the correct folder (example: /wp-content/themes/mimbo2/images/).
Now I’ll begin a new post and create a category called “Lead Story”:
After writing my post, I will scroll down to the “Custom Field” box. I’ll need to name the Key “Image” (with a capital “I”) and my Value will simply be the filename of that image:
Before saving our post, know that the the_excerpt function will automatically pull the first 55 words from our post. If you’d like to provide alternative excerpt text, just fill in the “Optional Excerpt” field:

When you’re done, save the post. Now, what PHP magic must happen to print it all to the homepage?
<?php query_posts('showposts=1&cat=3'); ?> <?php while (have_posts()) : the_post(); ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"> <img src="<?php echo get_option('home'); ?>/wp-content/themes/mimbo2/images/<?php // this is where the Lead Story image gets printed $values = get_post_custom_values("Image"); echo $values[0]; ?>" alt="" id="leadpic" /></a> <h3> <?php // this is where the name of the Lead Story category gets printed single_cat_title(); ?> </h3> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>" class="title"> <?php the_title(); ?> </a> <?php the_excerpt(); ?> {<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">More»</a>} <?php endwhile; ?>In the query_posts function at the top, you’ll notice a parameter called “cat=3″. That id number will differ from user to user, depending on what number is assigned in your database. It can be viewed in your control panel under Manage->Categories:

Be sure to adjust yours accordingly.
- Three FeaturesIn the lower left column, you’ll see three Feature boxes containing a photo and a title. Just like with the Lead Story, we’ll need to create a new category called “Features”, use Custom Fields to input the images, and pull it all together with Template Tags:
<?php // this is where the Features module begins query_posts('showposts=3&cat=4'); ?> <h3> <?php // this is where the name of the Features category gets printed single_cat_title(); ?> </h3> <?php while (have_posts()) : the_post(); ?> <div class="feature"> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"> <img src="<?php echo get_option('home'); ?>/wp-content/themes/mimbo2/images/<?php // this is where the custom field prints images for each Feature $values = get_post_custom_values("Image"); echo $values[0]; ?>" alt="" /></a><a href="<?php the_permalink() ?>" rel="bookmark" class="title"> <?php // this is where title of the Feature gets printed the_title(); ?>»</a></div> <?php endwhile; ?> - Category BlurbsIn the lower middle column, you’ll see there are categories like Music, Style and Gadgets. For each we want to pull a photo, a title and an excerpt. Instead of duplicating the same Template Tags for each category, we put the categories into an array and pull them like this:
<?php // this is where you enter the IDs of which categories you want to display $display_categories = array(5,6,7); foreach ($display_categories as $category) { ??> <?php query_posts("showposts=1&cat=$category"); ??> <?php // this is where you enter the IDs of which categories you want to display $display_categories = array(5,6,7); foreach ($display_categories as $category) { ?> <?php query_posts("showposts=1&cat=$category"); ?> <h3><?php // this is where the category name gets printed single_cat_title(); ?></h3> <?php while (have_posts()) : the_post(); ?> <?php // this grabs the image filename $values = get_post_custom_values("Image"); // this checks to see if an image file exists if (isset($values[0])) { ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"> <img src="<?php echo get_option('home'); ?>/wp-content/themes/mimbo2/images/<?php $values = get_post_custom_values("Image"); echo $values[0]; ?>" alt="" /></a> <?php } ?> <a href="<?php the_permalink() ?>" rel="bookmark" class="title"><?php the_title(); ?>»</a> <?php the_excerpt(); ?> <?php endwhile; ?> <?php } ?> - News HeadlinesAt the top of our sidebar are three headlines from the “News” category. You may have already guessed that we need a new category called “News” and another query_posts function:
<?php query_posts('showposts=3&cat=8'); ?> <ul> <?php while (have_posts()) : the_post(); ?> <li><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></li> <?php endwhile; ?> </ul> - Browse ArchivesBecause the archive list can become very long over time, we will display ours in a pull down menu:
<form id="archiveform" action=""> <select name="archive_chrono" onchange="window.location = (document.forms.archiveform.archive_chrono[document.forms.archiveform.archive_chrono.selectedIndex].value);"> <?php get_archives('monthly','','option'); ?> </select> </form> - Ads & Sponsors (Optional)If you wish to insert advertising, open sidebar.php and add whatever code is needed.
- ContributorsLast comes our “Contributors” module which uses the wp_list_authors function to query our database for contributors, print them in a list and include an RSS link for each:
<ul> <?php wp_list_authors('exclude_admin=1&show_fullname=1&hide_empty=1&feed_image=/wp-content/themes/mimbo2/images/rss.gif'); ?> </ul>Using a few available parameters, I have opted to exclude myself (administrator) from the list, show the name of each author, hide the name of any author who has not published anything and display an RSS icon.
That seems like a pretty good start to our magazine empire. Now it’s up to the client (himself a confirmed mimbo) to hire some talented writers and hope for the best.
Popularity: 16% [?]

Darren,
--July 25, 2007 @ 12:13 amThis is a terrific series — I’ve been looking for ages for a CMS to handle this type of thing for a local project: if only I’d known sooner that the mighty WordPress could handle this type of thing.
Keep up the good work - can’t wait to see what you have coming next.
Cheers - GD
wow - brillant.
--July 25, 2007 @ 5:46 amthats why i need a own wordpressblog, because
I use at present a freeaccount on wordpress …
Great idea - one question, don’t feeds pull the excerpt? If so, they’d be pulling the image and not the post?
--July 25, 2007 @ 3:00 pmThis is awesome. A template would come in handy for my podcast site. My only question would be if the Lead Story Blurb could also display the Podpress plugin media player for podcasting.
--July 25, 2007 @ 3:51 pmI’ve done a couple of “WordPress as CMS” projects for clients and the first few were a bit of a battle. They’ve gotten easier but I think this post will ratchet up my dollars to effort ratio a bit more.
Thanks!
--July 25, 2007 @ 6:21 pmThis is one of the best, easiest to read and understand WordPress template articles I’ve ever read. I’d venture to even say the best I’ve found so far. Thanks for breaking it down so easily and giving me tons of great ideas!
--July 25, 2007 @ 6:57 pmThanks for the feedback, guys.
@ Brian: Wordpress feeds can show the entire post unless specified by the feedreader, in my experience, at least that’s what I’ve found with Netvibes, Bloglines and Google Reader. If I go ahead and create a working theme for the magazine layout, I’ll do some testing and see how the RSS issues pan out.
@ Kris: Far as I know, the Podpress/Flash bit appears at the bottom of full posts, but isn’t included in post excerpts or “Read More” snippets. Again, that’s something I’d be interested in testing out.
--July 25, 2007 @ 10:45 pmThis is an excellent description of how to use WordPress as a CMS? I use WordPress for CMS sites for clients, since it’s so flexible. But I never even thought of using it like this, and some of the things you describe here are new to me. Thanks for such an informative post!
--July 26, 2007 @ 2:45 ampoor wordpress. it wants to be a CMS so badly, but the admin code is so awful and static. broken dev process, old code.
--July 26, 2007 @ 5:10 ami really wish someone would come with a more flexible blog-as-a-cms package and knock wordpress off.
I’d just like to add a voice saying, absolutely convert it to a theme if you’re able to and have the motivation. It’d be a brilliant addition to the Wordpress world.
--July 26, 2007 @ 7:39 amHi, I’d also definitely be really glad if you could find the time to convert it to a theme (it’s pretty well just what I need for a site I’m working on), but a great article either way!
Thanks!
--July 28, 2007 @ 3:28 amHi guys,
Technically the first part of the theme is already written; it’s what I used to test a lot of the functions described in the article. The code is sloppy and full of inline CSS styles, as it was just created for testing purposes, but it worked fine. Check back in a few weeks and I’ll put together a more complete theme available for download.
--July 28, 2007 @ 11:19 amthx!
--July 29, 2007 @ 1:41 amSo I have a question: How do you style each of those Featured Stories boxes? Based on my experience over the past hour trying to do that, it groups all three stories into one div and I can’t (because I’m slightly retarded) figure out how to get a border box around each story separately; it just puts the border and styling around the entire container of the featured stories that are being pulled from the database.
Can someone enlighten me?
--July 29, 2007 @ 10:31 amHello! Good Site! Thanks you! xapemmoodu
--July 30, 2007 @ 6:59 amDarren,
Thanks for the great info!
I for one would love to see a WP template based on the Mimbo example.
Best,
--August 3, 2007 @ 12:29 pmMatt
A ‘Mimbo’ Wordpress theme is in the works. If all goes well, it might be done by Sunday or Monday, check back soon…
--August 3, 2007 @ 8:43 pmI think this could be a great theme!
--August 7, 2007 @ 11:19 amhi darren,
thx for this great template - i was looking for sth like this a long long time. but i have the problem, that the more-tag is not working. if i try it in the main-lead-story, the story is always shown in the full length. how can i correct this ?
thank u in advance,
the traveler (testblog on http://t1745.foto-outlet.de/wordpress/)
--August 7, 2007 @ 6:19 pm@The Traveler:
The ‘Mimbo’ theme is now available, and the new version no longer requires the “Read More” function.
--August 13, 2007 @ 1:51 pmgreat job on this
its awesome
--August 15, 2007 @ 12:20 pmthis is exactly what I was looking for. But its not really meant for a single author blog.
--August 24, 2007 @ 3:35 pmDarren,
Thanks so much for this tutorial and theme. I am right now putting together a WP install for an online literary magazine, and this looks to be just the ticket to get me started. I’ll let you know how it goes!
–Adrienne
--August 29, 2007 @ 3:59 pmIm having problems using this code because it messes up with the navigation; did you used an alternative for the navigation?
--September 26, 2007 @ 7:07 pmHow does Kineda do his homepage like that?
--October 1, 2007 @ 5:13 pmThis tutorial has been super helpful — probably the best guide to constructing a flexible WordPress template that I’ve seen! Thanks so much for making it available.
I have a question that maybe you can answer. I’m constructing a site for an online magazine using WP (and I’ve relied heavily on stuff I’ve learned from your site).
The magazine is a quarterly, and we’d like to have a table of contents on the home page that ONLY shows items from the current issue.
My idea is for the editors to assign a single date to all posts from a given issue (e.g. the Spring Issue posts would all have the date April 15 2007). That way it will be easy to pull up a whole issue from the archives (in theory, anyway).
But on the home page, I want to show the LATEST issue. What I’d like to do is somehow query the posts so that it checks for the LATEST month of posts — not necessarily THIS month (there might not be any new posts this month, since it’s a quarterly) but the MOST RECENT month.
I can kind of think of how this might be done (look to see if there are posts THIS month, IF NOT then look in the month before that, etc.) but this is beyond my extremely rudimentary PHP skillz.
Any suggestions?
--October 2, 2007 @ 12:38 amI’m working on a similar problem as StrangeAttractor–a magazine based on issue, not date. My idea is to use the_meta template tag and insert a custom field into each post. For example, every post in a particular issue has the issue number as the key and the issue title as the value.
This is as far as I’ve gotten, but the plan is to then create a query for the post-meta-key. In theory, I think I can then organize all the content based on the meta data that I’ve attached to each post.
Right now I only have the current issue up. I’m working on the archives, which will be the true test of my theory! See the site here: http://sharkreef.org/
I’ll post again once I have made some progress (I hope!)
--October 3, 2007 @ 7:26 pmThank you!! It is one of the best themes i have ever seen!
--October 19, 2007 @ 12:46 pmThis is quite possibly the best theme I have found. I’m a theme hunter, and this is a real winner, followed up by good documentation.
--October 24, 2007 @ 9:51 pmHello i have try to add images to Feature article, but it not work, i have change the name of my original cat to Features, but, nope i can’t show the images, please help me if you can.
Bye
--October 29, 2007 @ 12:11 pmThanks for sharing, Darren.
I’ve played with the template a little bit and it seems to me that it would be more advantageous to use category_name instead of cat in the query_posts tag. At least it seems like it would be more flexible for the content owners to setup the categories. If you use the numbering scheme, you have to set them up in the right order.
Make sense? Am I missing something here?
Thanks,
--October 31, 2007 @ 1:59 pmNic
hi darren,
i’m using “Mimbo’ theme in my site http://www.lifeofexcellence.com.
cool stuff…..
suppose i need to change right column a bit
where in which i jus wanno display the category along with the image and a short description of the category and the link of that category must go archive of that category..
and also how to display the child categories alone at the side ,because it also shows teh parent category…….
can you help me with the same..
--November 1, 2007 @ 4:27 pm@Waaah (better blog-as-CMS-package) try MovableType. The templates are in straight HTML, and itll do anything you want. Two good examples of its implementation are
simplebits.com
orderedlist.com
Both made by high profile web developers. Only downside is that it uses CGI instead of PHP.
--November 6, 2007 @ 10:04 amBeautiful work AND support here. I’ve just finished figuring out the “Lead Story” configuration - easy peasy :) - but need more input on the “Features” formatting. Others might have the same questions, so here goes:
What dimensions should the images have for the “Features” image?
That’s all for now. You can see our Project Global Cooling site to watch it evolve.
Thanks again for the brilliant work.
--November 7, 2007 @ 4:12 pmRe: my own question about image size for “Features” fields: 256 X 88 works fine. I measured your demo page.
So far this is wonderfully easy. Thanks again!
--November 7, 2007 @ 4:42 pmhi, i just installed mimbo on my blog…but somehow the pictures in the features (the large ones) are not showing up…have the instructions changed? I tried the uploading, optional field thing and still no picture…it’s still “Image” and the full file name ****.jpg, right?
--November 9, 2007 @ 11:12 amIs there supposed to be any code for the picture in the actual post?
Hey,
What do I do for my contributors pics if two contributors share the same last name?
Dave
--November 9, 2007 @ 11:14 ami love it! yes, i really do :)
--November 12, 2007 @ 5:11 amplaying around with it on my site linked above.
theres one thing i would like to change. if only i could code php. maybe you can help out ;)
in the ‘category blurbs’ section i would like to be able to use more than one post of each category beeing arrayed. any suggestions?
thanks a lot in advance!
Darren, and others, there is bug I have just found while displaying the authors photo , in
single.php there is such string:
/wp-content/themes/mimbo2/images/.
Apparently, it should look like this (for version 2.1 at least ;) )
/wp-content/themes/mimbo2.1/images/
P.S. Thanx a lot for such great theme.
--November 12, 2007 @ 10:32 amgreat work! really a fantastic template i’m using for a friend site karmainstitute.it/magazine
i’ve started to work yesterday i need some time to customize it, but it’ a pleausure workin on.
thanks, alessio
--November 20, 2007 @ 9:23 amThank you! I’ve just finished the basic tweaking of our site using your template. Excellent!
--December 2, 2007 @ 11:12 amI basically took this idea to an extreme this past summer to create the website for my college’s online daily paper.
You can see it here: daily.swarthmore.edu/
I’d make it a theme, except there are a ridiculously huge number of individual categories called all over the place for posts and links etc. that anyone using it would have to heavily modify it themselves. Getting it to run has required, thus far, three custom plug-ins too.
--December 3, 2007 @ 2:09 amHi,
The custom fields dont work for me. I can see it get printed in the source code from the website, but it stops just after …..image/ so it looks like the image name is not being parsed or something!
Can you help me with this ?
Thanks
--December 3, 2007 @ 12:03 pmHello Darent,
First, many thanks for this Mimbo.
I meet problem with display items category by category. Could you check my Url and click one of them. You’ll see. It’s problem of my configuration or yhe new version of Mimbo.
Regards.
--December 5, 2007 @ 3:29 pmBrilliant work.
For Single Post Pages, is there a way to call other data from the user profile, for instance their url…
Keep up the good work.
--December 7, 2007 @ 2:17 pmomg, thank you sooooooooo much!!!
--December 7, 2007 @ 4:26 pmHi!
I have installed mimbo wordpress theme, is great but I have a problem. When click on Browse categories I don’t see nothing, The screen is black. Can you help me, please?.
Thank you.
--December 9, 2007 @ 11:50 amHi!
I have installed mimbo wordpress theme, is great but I have a problem. When click on Browse categories I don’t see nothing, The screen is black. Can you help me, please?.
My blog is http://www.tantoportanpoco.com
Thank you.
--December 9, 2007 @ 11:52 amOh, and did not know about it. Thanks for the information …
--December 19, 2007 @ 2:09 pmThis is great. i’ve been trying several things to get what you’ve created. I love it.
I was thinking of the “catagory blurb” section that it would be nice to be able to change the catagories listed the same way you change Lead and Feature stories. Can you advise me the write php changes needed to basically have a “Catagory Blurb 1″ “2″ “3″. I would need to make a catagory 1, 2, 3 (numbers, so they show up first) and where they print on the page it will say (instead of just 1) it will say “1 (name of other catagory selected)” (( for instance “1 Woodworking” )).
I appreciate your help. I’m not very good at PHP, but i’m sure a question like this would be like childs play to you.
--December 30, 2007 @ 2:03 amI knew Wordpress could do this stuff. Thankyou so much for showing how!
--January 2, 2008 @ 8:02 pmWow, you’re great! I like Mimbo and i learn a lot from you.
--January 5, 2008 @ 12:14 pmyour theme will be listed among our top-theme-list at http://wordpress-tutorials.de soon
--January 5, 2008 @ 6:25 pm缩短法所
--January 9, 2008 @ 1:55 amHi Darren,
Your theme is great.. but when I try to add images from url.. different website..the images is not displayed correctly..
example (I use the blog this tool from flickr to website)
http://farm2.static.flickr.com/1251/1206384591_1b9037881a.jpg
single post works fine
http://www.aboutoc.com/photos-videos/talega-san-clemente-orange-county.html
but from the Categories link the image don’t show up… (just the flickr css comments)
http://www.aboutoc.com/photo-videos
any idea how i can have the images show up in the Categories page??
Thank you,
Jim
--January 10, 2008 @ 5:16 am122 capital street suite 200
--January 10, 2008 @ 2:26 pmCatchable fatal error: Object of class stdClass could not be converted to string in /home/ikooly/public_html/blog/wp-includes/category-template.php on line 31
i got this error in sidebar when going to default post of wordpress
--January 14, 2008 @ 3:39 amThat’s a great WP templates MAGAZINE. by the way I’m still confuse with your Leading Story Module said “In the query_posts function at the top, you’ll notice a parameter called “cat=3″. That id number will differ from user to user, depending on what number is assigned in your database. It can be viewed in your control panel under Manage->Categories:”
Perhaps you can more detail share us about it.
Btw, thanks for your attention.
Rgds
--January 15, 2008 @ 5:58 amKiki
Here is example ;)
--January 16, 2008 @ 9:33 amhttp://www.ictmag.info
I think you coded the template for the sake of your demo and did not think about its ease of use and installation for your users. If not for my background in php, I’d have given up trying to make it work.
But alas, its works and nice job! :) Though like I mentioned, you might want to edit the code to make it more user friendly, easier to install and customize.
Jasa
--January 20, 2008 @ 2:39 pmWebBizPowerTools.com Loves Mimbo
It’s simply awesome! Thanks a lot Darren.
I like it the minute I see it. After a little struggle to understand how Mimbo works, I was able to customise the way I wanted it.
It’s my site’s theme now.
Keep up the great work Darren!
--January 21, 2008 @ 2:48 amgreat site and also very impressive wordpress template. good work
--January 21, 2008 @ 7:23 amI had start working on your theme for my website http://www.gadgetsgallery.com
--January 27, 2008 @ 11:41 amNo words to explain my expressions….Simply superb and amazing work….
thanks a lot darren for this template..
i’d apply this template to my DIET PILL REVIEW BLOG.
it takes me about a day to full customize this…
--February 1, 2008 @ 12:08 amGreat theme, definitely different from the typical ones I’ve seen. And thanks for coming up with an informative installation and post installation reference above. Makes my life easier.
--February 1, 2008 @ 6:57 amHi Darren,
I started today a fresh new site wich is based on your wonderfull theme.
Keep up the good work!!!
cheers,
--February 7, 2008 @ 6:53 pmJos van der Vleuten
I have a odd problem. The link ‘Lead Story’ does not show and is replaced by the words ‘NO CATEGORIES’ . I looked through the template and all the Category ID but cannot find the problem. Thanks for the great template.
--February 15, 2008 @ 4:07 amWhat i mean is that i cannot seem to get the category name printed out and with a link to the ‘Lead Story’.
Is the code below correct?
<a href=”" rel=”bookmark” title=”Permanent Link to ”
--February 15, 2008 @ 5:57 amIt seems to show the ‘Lead Story’ word but does not link to the actual ‘Lead Storey’ Category.
Darren,
Thanks for the great theme. I’ve got a question, though. I’m very unschooled in working with code, but I’m trying to learn. The author photo code I downloaded is different than what you have up above. This is what I have…
<img src=”/images/.jpg” alt=”" />
Can tell me exactly what I need to do with this? Do I replace “login” with my login name? Do I put it in the parentheses? Where do I put the jpg name? Right before “.jpg”? Sorry–probably dumb questions, but thanks for any help you can give.
--February 21, 2008 @ 3:06 pmthanks good template I’m now download
--February 25, 2008 @ 7:05 pmDarren:
Fabulous theme. We are customizing it for our new blog and I am having a spot of trouble with the author images. It seems to be similar to Shaun LePage’s issue above.
Here is the code I have:
<img src=”/images/.jpg” alt=”" />
I tried my login, lastname, firstname as the image file name. Any thoughts?
Thanks again for all the great work on this theme.
A-
--February 27, 2008 @ 10:24 amAdam Lehrhaupt: To make your author images work make sure the line is as follows (in the SINGLE POST template):
<img src=”/wp-content/themes/mimbo2/images/.jpg” alt=”" />
The author image will show up only if the author last name is the image name (must be a JPG).
If you want it to show the image with the author’s login, use this:
<img src=”/images/.jpg” alt=”" />
The lead story category title can be changed here in the INDEX template:
The include=3 is the category number. This decides the title of the category of the lead story.
--March 5, 2008 @ 10:32 amMy above post lost the code for the lead story category title:
wp_list_categories(’include=3&title_li=&style=none’); ?>
The include=3 is the category chosen for the Title Category.
--March 5, 2008 @ 10:34 amSorry, the above post on author images lost the code too…comments do not like the php tag.
email me at
dominic.willett
at
gmail.com
I can send you the code.
--March 5, 2008 @ 10:36 amupskirt
--March 8, 2008 @ 7:57 amThe theme is awesome. However, I just added my first post and while it is available in the side bar -nothing shows up on the homepage? TheLuxMaven.com.
--March 20, 2008 @ 2:00 pmSo good! Thank for your work!
--March 22, 2008 @ 9:43 amthanks very good template.
--March 23, 2008 @ 6:39 pmthanks !!! for this great template.this is exactly what I was looking for.probably the best guide to constructing a flexible WordPress template ….
--March 23, 2008 @ 10:59 pmI absolutely love this theme, thank you so much for it! Great job.
Does anybody know where the excerpt for the lead story can be changed? It pulls the first 55 words from the post - where can I customize that number? To 75 for example.
Cheers
--March 27, 2008 @ 10:43 amNice theme. Very good work. I’m using it for http://semesra.mywindowsxp.info :) Thanks.
--March 28, 2008 @ 7:01 amHi guys, great work!
--April 7, 2008 @ 3:52 pmBut I actually do not get how to make author’s avatar to appear. I know the image file is supposed to have the same name as the last name of the author is but is there a need to apply some special custom field as well or no.? Please support a detailed how to for us who are a bit dumber.thanx
Nice tutorial. I have been using Joomla for past 4 years to build CMS but after this I will try using Wordpress.
--April 12, 2008 @ 11:36 pmQuestion will there be another breakdown of how to set things up for wordpress 2.5 or will you up date this templates?
--April 19, 2008 @ 12:12 amcool! we develop online magazines too! we might use this.
--April 19, 2008 @ 3:01 pmhttp://www.sofa-manufacturer.com
--April 23, 2008 @ 4:23 amcan youp please give advice on the above website? I do want to use this theme to replace. but I am not sure whether it is good or not.
The tweak that would allow the text and images to generate entirely from posts is what will make this really user-friendly.
Placing an image in the image file is time-consuming and doesn’t provide the formatting you get in a post.
Non-geek users won’t be able to do this.
If the process is more complicated than posting, they’ll say it’s too hard.
ricland
--April 27, 2008 @ 8:42 am