Blog

In Praise of Wordpress Template Tags, Part II: The Magazine Layout

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):

mimbo

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:

  1. 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:

    tagline

    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'); ?>
    
  2. 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.

  3. 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&raquo;</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.

  4. 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(); ?>&raquo;</a></div>
    <?php endwhile; ?>
    
  5. 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(); ?>&raquo;</a>
    <?php the_excerpt(); ?>
    <?php endwhile; ?>
    <?php } ?>
    
  6. 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>
    
  7. 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>
    
  8. Ads & Sponsors (Optional)If you wish to insert advertising, open sidebar.php and add whatever code is needed.
  9. 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.

  10. Single Post PagesIf you view a single post, you will see author info at the bottom of the article. That info can be edited in the control panel under Users->Your Profile.

    The author’s photo uses a custom field to display the image. Note that the filename must match the author’s last name (ex: “Hoyt.jpg”):

    <img src="<?php echo get_option('home'); ?>/wp-content/themes/mimbo2/images/<?php the_author_lastname(); ?>.jpg" alt="" />
    

    The author’s name is called like this:

    <?php the_author_posts_link('namefl'); ?>
    

    The author’s bio is called like this:

    <?php the_author_description(); ?>
    

    The author’s email is called like this:

    <a href="mailto:<?php the_author_email(); ?>" title="Email this author">Email this author</a>
    

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% [?]

205 Responses »

  1. gathadirect said:

    Darren,
    This 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

    --July 25, 2007 @ 12:13 am
  2. Pierro said:

    wow - brillant.
    thats why i need a own wordpressblog, because
    I use at present a freeaccount on wordpress …

    --July 25, 2007 @ 5:46 am
  3. Brian Gardner said:

    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 pm
  4. Kris Black said:

    This 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 pm
  5. Chris In Cincinnati said:

    I’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 pm
  6. Lindsey said:

    This 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 pm
  7. Darren said:

    Thanks 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 pm
  8. Miriam said:

    This 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 am
  9. waaah said:

    poor wordpress. it wants to be a CMS so badly, but the admin code is so awful and static. broken dev process, old code.
    i really wish someone would come with a more flexible blog-as-a-cms package and knock wordpress off.

    --July 26, 2007 @ 5:10 am
  10. Matt said:

    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 am
  11. Chris said:

    Hi, 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 am
  12. Darren said:

    Hi 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 am
  13. youyicun said:

    thx!

    --July 29, 2007 @ 1:41 am
  14. Alex Richards said:

    So 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 am
  15. hmhuunzfew said:

    Hello! Good Site! Thanks you! xapemmoodu

    --July 30, 2007 @ 6:59 am
  16. Matt said:

    Darren,

    Thanks for the great info!

    I for one would love to see a WP template based on the Mimbo example.

    Best,
    Matt

    --August 3, 2007 @ 12:29 pm
  17. Darren Hoyt said:

    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 pm
  18. Brian Pate said:

    I think this could be a great theme!

    --August 7, 2007 @ 11:19 am
  19. the Traveler said:

    hi 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
  20. Darren Hoyt said:

    @The Traveler:

    The ‘Mimbo’ theme is now available, and the new version no longer requires the “Read More” function.

    --August 13, 2007 @ 1:51 pm
  21. eddy said:

    great job on this

    its awesome

    --August 15, 2007 @ 12:20 pm
  22. vijay said:

    this is exactly what I was looking for. But its not really meant for a single author blog.

    --August 24, 2007 @ 3:35 pm
  23. Adrienne Adams said:

    Darren,

    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 pm
  24. Benji said:

    Im 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 pm
  25. Raffel Jill said:

    How does Kineda do his homepage like that?

    --October 1, 2007 @ 5:13 pm
  26. StrangeAttractor said:

    This 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 am
  27. Adrienne Adams said:

    I’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 pm
  28. glucko said:

    Thank you!! It is one of the best themes i have ever seen!

    --October 19, 2007 @ 12:46 pm
  29. Jesse Petersen said:

    This 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 pm
  30. stew said:

    Hello 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 pm
  31. Nic Johnson said:

    Thanks 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,
    Nic

    --October 31, 2007 @ 1:59 pm
  32. Nivas said:

    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
  33. Chris said:

    @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 am
  34. Clay Burell said:

    Beautiful 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 pm
  35. Clay Burell said:

    Re: 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 pm
  36. peijin said:

    hi, 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?
    Is there supposed to be any code for the picture in the actual post?

    --November 9, 2007 @ 11:12 am
  37. Dave Milam said:

    Hey,

    What do I do for my contributors pics if two contributors share the same last name?

    Dave

    --November 9, 2007 @ 11:14 am
  38. derdude said:

    i love it! yes, i really do :)
    playing 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!

    --November 12, 2007 @ 5:11 am
  39. beotiger said:

    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 am
  40. YouON said:

    great 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 am
  41. Jay said:

    Thank you! I’ve just finished the basic tweaking of our site using your template. Excellent!

    --December 2, 2007 @ 11:12 am
  42. Miles said:

    I 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 am
  43. Roger said:

    Hi,

    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 pm
  44. Jean-Phi said:

    Hello 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 pm
  45. Roscoe said:

    Brilliant 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 pm
  46. Fabian said:

    omg, thank you sooooooooo much!!!

    --December 7, 2007 @ 4:26 pm
  47. Sergio said:

    Hi!
    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 am
  48. Sergio said:

    Hi!
    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 am
  49. Andy said:

    Oh, and did not know about it. Thanks for the information …

    --December 19, 2007 @ 2:09 pm
  50. Brad said:

    This 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 am
  51. kristarella said:

    I knew Wordpress could do this stuff. Thankyou so much for showing how!

    --January 2, 2008 @ 8:02 pm
  52. Kate Mag said:

    Wow, you’re great! I like Mimbo and i learn a lot from you.

    --January 5, 2008 @ 12:14 pm
  53. Frank Pfabigan said:

    your theme will be listed among our top-theme-list at http://wordpress-tutorials.de soon

    --January 5, 2008 @ 6:25 pm
  54. 移民 said:

    缩短法所

    --January 9, 2008 @ 1:55 am
  55. Jim said:

    Hi 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 am
  56. Clara-xt said:

    122 capital street suite 200

    --January 10, 2008 @ 2:26 pm
  57. Henry said:

    Catchable 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 am
  58. Kiki said:

    That’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
    Kiki

    --January 15, 2008 @ 5:58 am
  59. Goran Ani?ić said:

    Here is example ;)
    http://www.ictmag.info

    --January 16, 2008 @ 9:33 am
  60. jasa said:

    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 pm
  61. Hilmy said:

    WebBizPowerTools.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 am
  62. Binusha Perera said:

    great site and also very impressive wordpress template. good work

    --January 21, 2008 @ 7:23 am
  63. Senthil Kumar said:

    I had start working on your theme for my website http://www.gadgetsgallery.com
    No words to explain my expressions….Simply superb and amazing work….

    --January 27, 2008 @ 11:41 am
  64. @balootisme said:

    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 am
  65. gmonger said:

    Great 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 am
  66. Jos van der Vleuten said:

    Hi Darren,

    I started today a fresh new site wich is based on your wonderfull theme.
    Keep up the good work!!!

    cheers,
    Jos van der Vleuten

    --February 7, 2008 @ 6:53 pm
  67. John said:

    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 am
  68. John said:

    What 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 ”
    It seems to show the ‘Lead Story’ word but does not link to the actual ‘Lead Storey’ Category.

    --February 15, 2008 @ 5:57 am
  69. Shaun LePage said:

    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 pm
  70. msn nickleri said:

    thanks good template I’m now download

    --February 25, 2008 @ 7:05 pm
  71. Adam Lehrhaupt said:

    Darren:

    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 am
  72. Dominic said:

    Adam 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 am
  73. Dominic said:

    My 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 am
  74. Dominic said:

    Sorry, 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 am
  75. upskirt said:

    upskirt

    --March 8, 2008 @ 7:57 am
  76. Nicole said:

    The 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 pm
  77. Blogeeks said:

    So good! Thank for your work!

    --March 22, 2008 @ 9:43 am
  78. technology said:

    thanks very good template.

    --March 23, 2008 @ 6:39 pm
  79. sachinKT said:

    thanks !!! 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 pm
  80. Harry said:

    I 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 am
  81. dekan said:

    Nice theme. Very good work. I’m using it for http://semesra.mywindowsxp.info :) Thanks.

    --March 28, 2008 @ 7:01 am
  82. Marcus Aurelius said:

    Hi guys, great work!
    But 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

    --April 7, 2008 @ 3:52 pm
  83. Zoran said:

    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 pm
  84. Norvell said:

    Question 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 am
  85. web development said:

    cool! we develop online magazines too! we might use this.

    --April 19, 2008 @ 3:01 pm
  86. Rick Lee said:

    http://www.sofa-manufacturer.com
    can 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.

    --April 23, 2008 @ 4:23 am
  87. ricland said:

    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



Trackbacks & Pingbacks

  1. Quality Peoples » Magazine Layouts with WP:

    […] how to create a “magazine style” layout using Word Press’ template tags at Darren Hoyt Dot Com. Great tutorial. [via can’t quite […]

    --July 25, 2007 @ 1:22 pm
  2. WordPress as an Online Magazine:

    […] and how great it has been as a content management system. In his latest part entitled “In Praise of Wordpress Template Tags, Part II: The Magazine Layout” he shows how he integrated WordPress into a website, using it to run an online magazine. A […]

    --July 25, 2007 @ 2:23 pm
  3. Customizing Wordpress the Easy Way!:

    […] Darren Hoyt has written an amazing, concise and easy to read WordPress “tutorial” on usi… to customize your Wordpress theme in creative ways to achieve the layout you desire - in this case a magazine style layout. […]

    --July 25, 2007 @ 7:06 pm
  4. WordPress 作为一本网络?志 | wordpress blog xqxp.com:

    […] WordPress and how great it has been as a content management system. In his latest part entitled “In Praise of Wordpress Template Tags, Part II: The Magazine Layout? he shows how he integrated WordPress into a website, using it to run an online magazine. A very […]

    --July 25, 2007 @ 10:19 pm
  5. Mit Wordpress ein Online Magazin bauen:

    […] man aus einer normalen Wordpress-Installation ein Online Magazin, wie GQ und Co., erstellen kann: In Praise of Wordpress Template Tags, Part II: The Magazine Layout. Mit nur wenigen Handgriffen könnt auch Ihr den einen oder anderen Trick aus dem Artikel von […]

    --July 26, 2007 @ 2:53 am
  6. links for 2007-07-27:

    […] Darren Hoyt Dot Com » Blog Archive » In Praise of Wordpress Template Tags, Part II: The Magazine L… 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. Let’s move toward a more sophisticated homepage concept (tags: wordpress web design cms) […]

    --July 26, 2007 @ 9:27 pm
  7. marlyse.com » In Praise of Wordpress Template Tags, Part II: The Magazine Layout:

    […] (Via Darren Hoyt Dot Com » In Praise of Wordpress Template Tags, Part II: The Magazine Layout. filed under : asides - wordpress | created late at night - it was 11:27 pm to be exact | […]

    --July 27, 2007 @ 12:28 am
  8. Entreprenews of the Week -- Young Go Getter:

    […] In Praise of Wordpress Template Tags, Part II: The Magazine Layout Magazines have somewhat perfected their format over centuries. A format that happens to work perfectly with blogs. Here’s a guide to making your own Wordpress based online magazine. […]

    --July 29, 2007 @ 5:33 pm
  9. links for 2007-07-29 « toonz:

    […] Darren Hoyt Dot Com » Blog Archive » In Praise of Wordpress Template Tags, Part II: The Magazine L… (tags: wordpress tutorial magazine tutorials howto css) […]

    --July 29, 2007 @ 7:18 pm
  10. Basic Thinking Blog » Wordpress als CMS:

    […] In Praise of Wordpress Template Tags, Part II: The Magazine Layout und In Praise of Wordpress Template […]

    --July 30, 2007 @ 5:48 am
  11. links for 2007-07-30 | MY Vast Right Wing Conspiracy:

    […] In Praise of Wordpress Template Tags, Part II: The Magazine Layout Sample scenario: a client needs your help in realizing his dodgy dream of starting an online magazine. His existing site already runs the standard Wordpress blog format, but now he’s seeking a more ambitious, exploded-view layout to accommodate a variet (tags: wordpress cms tutorial themes templates webdesign design layouts magazine) […]

    --July 30, 2007 @ 7:38 am
  12. Mine del.icio.us-links den 31. juli:

    […] In Praise of Wordpress Template Tags, Part II: The Magazine Layout - Brug WordPress til et online-magasin […]

    --July 31, 2007 @ 8:30 pm
  13. one digital life » Blog Archive » Tutorial: Magazine layouts with Wordpress:

    […] traditional blog, and more like an online magazine? Darren Hoyt has you covered with a nice little tutorial on reformatting your Wordpress […]

    --August 1, 2007 @ 5:26 pm
  14. 10 Links für ein besseres WordPress-Blog | NanoPub:

    […] In Praise of Wordpress Template Tags (Part I) und Part II […]

    --August 2, 2007 @ 1:00 pm
  15. Recommended Reading for 25th July through 4th August:

    […] Creating A Magazine Layout For WordPress - Excellent post describing how to create a magazine style homepage for a WordPress blog. […]

    --August 4, 2007 @ 8:30 pm
  16. adventures of a blogjunkie » Blog Archive » del.icio.us bookmarks for August 4th:

    […] Darren Hoyt Dot Com » Blog Archive » In Praise of Wordpress Template Tags, Part II: The … - […]

    --August 4, 2007 @ 8:42 pm
  17. links for 2007-07-26 en newdisco:

    […] Darren Hoyt Dot Com » Blog Archive » In Praise of Wordpress Template Tags, Part II: The Magazine L… Como convertir una instalacion de Wordpress en una revista online. Excelente documento. (tags: wordpress howto tutorial magazine inspiration webdesign webdev cms) […]

    --August 6, 2007 @ 8:44 am
  18. Thème Wordpress Magazine, un soupçon de CMS ?:

    […] fait un petit moment que je suis le blog de Darren Hoyt qui a entrepris il y a un petit moment plusieurs articles sur les possibilités de customiser Wordpress pour en faire un site complet, de type CMS. […]

    --August 6, 2007 @ 10:15 am
  19. Mimbo Magazine-style WordPress Theme » D’ Technology Weblog: Technology News & Reviews:

    […] is a new magazine-style Wordpress theme, explained in detail here. It contains no images and only minimal CSS(link) (Cascading Style Sheets) styling. Mainly it […]

    --August 6, 2007 @ 6:46 pm
  20. blog do valdecir carvalho » Blog Archive » links for 2007-08-07:

    […] Darren Hoyt Dot Com » Blog Archive » In Praise of Wordpress Template Tags, Part II: The Magazine L… TUTORIAL SOBRE COMO CRIAR UM TEMPLATE BASEADO EM UMA REVISTA - PODE SER ÚTIL PARA O SITE!!! (tags: blog blogging cms design inspiration hack Magazine theme Wordpress Tutorial Howto tutorials CSS) […]

    --August 7, 2007 @ 7:19 am
  21. Magazine Layout | The WP Journal:

    […] Category: Tips | ≅ Darren Hoyt wrote an explicit article on turning WP into a magazine style website: It’s nothing too polished yet, just a grid-based […]

    --August 10, 2007 @ 12:09 pm
  22. Best of July 2007 | Best of the Month:

    […] In Praise of Wordpress Template Tags, Part II: The Magazine Layout 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. The article explains how the solution might look like. […]

    --August 13, 2007 @ 1:09 pm
  23. Nachlese Juli 2007- Die Seiten des Monats » Allgemeines:

    […] In Praise of Wordpress Template Tags, Part II: The Magazine Layout Eine detaillierte Einleitung in die Umsetzung eines Magazin-Layouts in Wordpress. […]

    --August 13, 2007 @ 1:10 pm
  24. Best of July 2007 .:

    […] In Praise of Wordpress Template Tags, Part II: The Magazine Layout 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. The article explains how the solution might look like. […]

    --August 13, 2007 @ 4:14 pm
  25. lost node » Blog Archive » Best of July 2007:

    […] In Praise of Wordpress Template Tags, Part II: The Magazine Layout 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. The article explains how the solution might look like. […]

    --August 13, 2007 @ 6:24 pm
  26. Mark Kirby - Brighton » Blog Archive » links for 2007-08-14:

    […] Turning wordpress into a CMS (tags: blogging wordpress) […]

    --August 14, 2007 @ 5:23 pm
  27. links for 2007-08-14 | betohayasida.net:

    […] Darren Hoyt Dot Com » Blog Archive » In Praise of Wordpress Template Tags, Part II: The Magazine L… (tags: wordpress:tutorial) […]

    --August 14, 2007 @ 7:29 pm
  28. My del.icio.us bookmarks for August 1st through August 14th:

    […] Darren Hoyt Dot Com » Blog Archive » In Praise of Wordpress Template Tags, Part II: The … - ????????? ?? ???? ?????? ??? […]

    --August 14, 2007 @ 8:48 pm
  29. Post-ferie linkopsamling | Webmercial.dk:

    […] Wordpress til magasinlayout […]

    --August 15, 2007 @ 4:51 pm
  30. Wordpress Template Tags: The Magazine Layout:

    […] How to convert your standard Wordpress layout into a multi-faceted online magazine, using Template Tags and The Loop. Interesting indeed!! Read the article here… […]

    --August 24, 2007 @ 1:53 pm
  31. The Rock ‘n’ Ro Show » Blog Archive » Entreprenews of the Week:

    […] In Praise of Wordpress Template Tags, Part II: The Magazine Layout Magazines have somewhat perfected their format over centuries. A format that happens to work perfectly with blogs. Here’s a guide to making your own Wordpress based online magazine. […]

    --August 30, 2007 @ 8:44 pm
  32. Web 2.0 Blog » Blog Archive » Nachlese Juli 2007- Die Seiten des Monats - aus dem Blog:Dr. Web Weblog[Quelle]:

    […] In Praise of Wordpress Template Tags, Part II: The Magazine Layout Eine detaillierte Einleitung in die Umsetzung eines Magazin-Layouts in Wordpress. […]

    --September 1, 2007 @ 3:27 am
  33. » Wordpress Magazine Theme Released:

    […] is a new magazine-style Wordpress theme, explained in detail here. It contains no images and only minimal CSS styling. Mainly it exists as a starter layout for […]

    --September 20, 2007 @ 6:52 am
  34. » Build A Dynamic Design Portfolio with Wordpress:

    […] but there are varying degrees of how to break down and print that data. As seen in other articles, I’m a fan of exploiting Wordpress’s query_posts function for purposes other than […]

    --September 20, 2007 @ 6:53 am
  35. » Managing Wordpress Template Tags with Dreamweaver Snippets:

    […] designers who don’t write PHP from scratch, the Wordpress template code mentioned in past articles can be cumbersome to type out for each new project. For me, that code is a perfect candidate for […]

    --September 20, 2007 @ 7:58 am
  36. Darren Hoyt Dot Com » Blog Archive » Wordpress Magazine Theme Released:

    […] on the homepage are displayed using custom fields. Read more about this […]

    --October 19, 2007 @ 9:13 am
  37. Darren Hoyt Dot Com » Blog Archive » Updates to the Magazine Theme Tutorial:

    […] original tutorial (”In Praise of Wordpress Template Tags, Part II: The Magazine Layout“) which inspired Mimbo has been edited to reflect the upgrades to Mimbo 2.0. The tutorial now […]

    --October 25, 2007 @ 9:35 pm
  38. Darren Hoyt Dot Com » Wordpress Themes Aren’t Just Pretty Packaging:

    […] having some cool email discussions these past few months with folks who originally found the site through this article. We’ve been talking about the potential of Wordpress as a CMS and what can be done with […]

    --October 26, 2007 @ 12:32 pm
  39. WP Deneme » Blog Archive » Wordpress Magazine Theme Released:

    […] is a magazine-style Wordpress theme which makes extensive use of WP’s template tag system to create a non-traditional layout. It contains no images and only minimal CSS styling. Mainly it […]

    --October 29, 2007 @ 8:37 pm
  40. WP Deneme » Blog Archive » How do I add images to the homepage:

    […] do I add images to the homepage? As mentioned before, the images are pulled in using Custom Fields. For this to work, images must be stored in the /mimbo2/images folder. You can either upload them […]

    --October 29, 2007 @ 8:39 pm
  41. WP Deneme » Blog Archive » Why does the formatting of my excerpts look strange?:

    […] mentioned before, the images are pulled in using Custom Fields. For this to work, images must be stored in the /mimbo2/images folder. You can either upload them […]

    --October 29, 2007 @ 8:47 pm
  42. josh fassbind » Blog Archive » Ladida, Ladida:

    […] numbers in your own database. They can be found in your control panel under Manage->Categories. Read more about this […]

    --November 3, 2007 @ 6:49 am
  43. En bedre tegneserieside, del 1: 404 not found at superevil.org:

    […] fil, der fulgte med mit tema var ikke meget bevendt - den skrev “404 not found” i en level 2-heading og det var […]

    --November 5, 2007 @ 5:32 pm
  44. ?CMS一样的WordPress 主题Mimbo : : MoonShow:

    […] 3.关于网页上的图片调用,详细介?请?考:Read more […]

    --November 6, 2007 @ 4:51 am
  45. HIC SUNT LEONES » Blog Archive » News Post #1:

    […] is a magazine-style Wordpress theme which makes extensive use of WP’s template tag system to create a non-traditional layout. It contains no images and only minimal CSS styling. Mainly it […]

    --November 12, 2007 @ 11:37 am
  46. HIC SUNT LEONES » Blog Archive » News Post #2:

    […] is a magazine-style Wordpress theme which makes extensive use of WP’s template tag system to create a non-traditional layout. It contains no images and only minimal CSS styling. Mainly it […]

    --November 12, 2007 @ 11:37 am
  47. HIC SUNT LEONES » Blog Archive » Event #1:

    […] is a magazine-style Wordpress theme which makes extensive use of WP’s template tag system to create a non-traditional layout. It contains no images and only minimal CSS styling. Mainly it […]

    --November 12, 2007 @ 11:38 am
  48. HIC SUNT LEONES » Blog Archive » Event #2:

    […] is a magazine-style Wordpress theme which makes extensive use of WP’s template tag system to create a non-traditional layout. It contains no images and only minimal CSS styling. Mainly it […]

    --November 12, 2007 @ 11:38 am
  49. HIC SUNT LEONES » Blog Archive » Uncategorized:

    […] is a magazine-style Wordpress theme which makes extensive use of WP’s template tag system to create a non-traditional layout. It contains no images and only minimal CSS styling. Mainly it […]

    --November 12, 2007 @ 11:38 am
  50. HIC SUNT LEONES » Blog Archive » Incoming #1:

    […] is a magazine-style Wordpress theme which makes extensive use of WP’s template tag system to create a non-traditional layout. It contains no images and only minimal CSS styling. Mainly it […]

    --November 12, 2007 @ 11:48 am
  51. HIC SUNT LEONES » Blog Archive » Connection #1:

    […] is a magazine-style Wordpress theme which makes extensive use of WP’s template tag system to create a non-traditional layout. It contains no images and only minimal CSS styling. Mainly it […]

    --November 12, 2007 @ 11:48 am
  52. HIC SUNT LEONES » Blog Archive » History #1:

    […] is a magazine-style Wordpress theme which makes extensive use of WP’s template tag system to create a non-traditional layout. It contains no images and only minimal CSS styling. Mainly it […]

    --November 12, 2007 @ 11:49 am
  53. HIC SUNT LEONES » Blog Archive » Incoming #2:

    […] is a magazine-style Wordpress theme which makes extensive use of WP’s template tag system to create a non-traditional layout. It contains no images and only minimal CSS styling. Mainly it […]

    --November 12, 2007 @ 11:53 am
  54. HIC SUNT LEONES » Blog Archive » Event #3:

    […] is a magazine-style Wordpress theme which makes extensive use of WP’s template tag system to create a non-traditional layout. It contains no images and only minimal CSS styling. Mainly it […]

    --November 12, 2007 @ 11:54 am
  55. HIC SUNT LEONES » Blog Archive » Event #4:

    […] is a magazine-style Wordpress theme which makes extensive use of WP’s template tag system to create a non-traditional layout. It contains no images and only minimal CSS styling. Mainly it […]

    --November 12, 2007 @ 11:55 am
  56. » Wordpress Magazine Theme —— Mimbo中文说明 EZY Street» Blog Archive:

    […] 概述 Mimbo是一?志风格的wordpress的主题,为了创造出?传统的版?风格,主题广泛地使用WP’s template tag syste。主题模?中没用使用任何图片,并且??用了?少的CSS代?。这样?的主?目的是为了使整个页???整?,并能使设计者添加你想?的风格。 […]

    --November 13, 2007 @ 12:57 am
  57. Thème en préparation : Mimbo 2.1 « Calyptratus WordPress Corner:

    […] tutorial sur l’utilisation du thème : part 1 - part 2 […]

    --November 14, 2007 @ 1:38 pm
  58. Mark Thomas Gazels websted » Blog Archive » links for 2007-11-19:

    […] Darren Hoyt Dot Com » In Praise of Wordpress Template Tags, Part II: The Magazine Layout Imponerende hvordan man ved at sætte indbyggede tags sammen i WordPress kan få en en magasinside. (tags: wordpress magasin layout) […]

    --November 19, 2007 @ 8:20 am
  59. bubez.com » Blog Archive » Test del cazzo:

    […] numbers in your own database. They can be found in your control panel under Manage->Categories. Read more about this […]

    --November 26, 2007 @ 8:30 am
  60. Le Blog de Brakwiz » News » Bienvenue sur “Brakwiz 2.0″:

    […] son ouverture ;)) je reset les cinq articles tout brakwiz.com ! Je me lance avec un nouveaux thème Mimbo 2 différent des autres par son utilisation des champs personnalisé, il ne me reste plus qu’a […]

    --December 2, 2007 @ 1:36 pm
  61. Keren!!! Template Mimbo « Zoel’s Website & Blog:

    […] yg aq kopi-pes dari sini: Mimbo is a magazine-style Wordpress theme which makes extensive use of WP’s template tag system to create a non-traditional layout. It contains no images and only minimal CSS styling. Mainly it […]

    --December 8, 2007 @ 7:17 am
  62. Ett par snygga Wordpress mallar | Westberg Sökmotoroptimering:

    […] Wordpress themes! Wp Candy - Massvis med trevliga mallar. Design Disease - 6 st snygga mallar. Darren Hoyt - För dig som vill lära dig lite mer avancerade funktioner i Wordpress. Passar nyhetssajter med […]

    --December 9, 2007 @ 7:43 pm
  63. 电影家 » 新 » 11月 13th, 2007 WP?志模?Mimbo中文使用说明:

    […] 概述 Mimbo是一?志风格的wordpress的主题,为了创造出?传统的版?风格,主题广泛地使用WP’s template tag syste。主题模?中没用使用任何图片,并且??用了?少的CSS代?。这样?的主?目的是为了使整个页???整?,并能使设计者添加你想?的风格。 […]

    --December 10, 2007 @ 11:40 pm
  64. KodeeXII.Net » Blog Archive » Mimbo Theme It Is:

    […] is a magazine style theme. As you can see, it’s not a typical blog layout where all posts are displayed sequentially […]

    --December 11, 2007 @ 9:16 pm
  65. Rechangement de thème ! : Le Blog de Brakwiz:

    […] me cherche comme dirait l’autre … Après avoir essayer Mimbo le thème magazine je reviens à un bon vieux format de blog 2 colonnes Tapestry, en effet le type […]

    --December 13, 2007 @ 1:06 am
  66. gfhfhfdh |:

    […] mentioned before, the images are pulled in using Custom Fields. For this to work, images must be stored in the /images/ folder of […]

    --December 18, 2007 @ 2:44 pm
  67. Mimbo Theme Live | Kelson Consulting:

    […] is a magazine-style Wordpress theme which makes extensive use of WP’s template tag system to create a non-traditional layout. It contains no images and only minimal CSS styling. Mainly it […]

    --December 19, 2007 @ 10:36 pm
  68. YouR on This ! |:

    […] and how to work them up (along with other features of the theme) are worked out in great detail in the author’s detailed instruction post. Like many advanced theme authors (The Morning After, below, utilizes this method) Darren here is […]

    --December 20, 2007 @ 3:38 pm
  69. Scratch » Features » Afridi Blazes A Tonne:

    […] do I add images to the homepage? As mentioned before, the images are pulled in using Custom Fields. For this to work, images must be stored in the /images/ folder of your theme. You can either […]

    --December 26, 2007 @ 9:19 am
  70. Scratch » Uncategorized » Walla!:

    […] do I add images to the homepage? As mentioned before, the images are pulled in using Custom Fields. For this to work, images must be stored in the /images/ folder of your theme. You can either […]

    --December 26, 2007 @ 9:23 am
  71. Mimbo中文使用说明 | 沿阶?堂:

    […] 第一次在E-sapce.com看到这个模?就被它迷?了。淡淡的绿色,很优雅。里?的内容也很丰富。但是我以?没使用过Wordpress,研究了Mimbo?长时间,都?记得打开Mimbo官网说明多少次了。 收获很大,下?我就把必?的步骤写下?。具体的为什么我就?说了,我?懂那些php函数。 […]

    --December 28, 2007 @ 2:42 am
  72. Moving Over to Wordpress: My Observations:

    […] Things like I can now edit comments. I now have trackbacks without the need to add a third party software. I can now add thumbnails to my posts. Categories and tags are a breeze and more powerful. […]

    --December 28, 2007 @ 8:31 pm
  73. claims4negligence.co.uk » Uncategorized » Person Injury Claim:

    […] are worked out in great detail in the author’s detailed instruction post. Like many advanced theme authors (The Morning After, below, utilizes this method) Darren here is […]

    --December 29, 2007 @ 4:01 pm
  74. Moving Blogger Over to Wordpress: The Good, Bad and the Ugly:

    […] excerpts. I can publish my posts at a future date and time. Categories and tags are a breeze and more powerful… and much […]

    --January 3, 2008 @ 4:08 pm
  75. E拉客 » 测试分类 » WP?志模?Mimbo中文使用说明:

    […] 概述 Mimbo是一?志风格的wordpress的主题,为了创造出?传统的版?风格,主题广泛地使用WP’s template tag syste。主题模?中没用使用任何图片,并且??用了?少的CSS代?。这样?的主?目的是为了使整个页???整?,并能使设计者添加你想?的风格。 […]

    --January 6, 2008 @ 7:08 am
  76. Sollzustand » Eine kleine Geschichte über Eine, die unbedingt ein Wordpress Theme anpassen mußte:

    […] anlegen und die IDs in den Scripts des Themes anpassen. Dank der sehr guten Dokumentation von Darren Hoyt klappte das auch ohne genauere PHP-Kenntnisse ziemlich […]

    --January 6, 2008 @ 11:45 am
  77. Free WordPress templates, plugins » Blog Archive » Mimbo Free Wordpress Template:

    […] 2 columns, white colors, widget ready, Wordpress theme in magazine-style. Instructions […]

    --January 9, 2008 @ 8:20 pm
  78. Webzine | Ceci est un test d’article:

    […] do I add images to the homepage? As mentioned before, the images are pulled in using Custom Fields. For this to work, images must be stored in the /images/ folder of your theme. You can either […]

    --January 17, 2008 @ 5:38 pm
  79. Vertrekkers Info » Welkom » Welkom bij Vertrekkers Info!:

    […] mentioned before, the images are pulled in using Custom Fields. For this to work, images must be stored in the /images/ folder of your theme. You can either […]

    --January 18, 2008 @ 1:33 pm
  80. La Pinta Medicea » Blog » prova:

    […] numbers in your own database. They can be found in your control panel under Manage->Categories. Read more about this […]

    --January 19, 2008 @ 10:08 am
  81. Layoutica.com - Mimbo: Free Wordpress Magazine Theme:

    […] is a free magazine-style Wordpress theme which makes extensive use of WP’s template tag system to create a non-traditional layout. It contains no images and only minimal CSS styling. Mainly it […]

    --January 19, 2008 @ 7:13 pm
  82. Burwood » LEAD STORY WordPress » Wordpress Magazine Theme Released:

    […] is a magazine-style Wordpress theme which makes extensive use of WP’s template tag system to create a non-traditional layout. It contains no images and only minimal CSS styling. Mainly it […]

    --January 26, 2008 @ 3:51 am
  83. ?·??-[soulreturn] » 我喜欢的 » 感谢 | Mimbo theme !:

    […] is a magazine-style Wordpress theme which makes extensive use of WP’s template tag system to create a non-traditional layout. It contains no images and only minimal CSS styling. Mainly it […]

    --January 30, 2008 @ 4:08 am
  84. Jet Pack » Flagship » Testing the Ratings System:

    […] MPAA or something. This is where the excerpt of a feature short story would go. Learn more about the Mimbo template we’re using by clicking that […]

    --February 3, 2008 @ 4:10 pm
  85. vandervleuten.org » Lead Story » Mimbo Magazine:

    […] is based on the Mimbo theme. Mimbo is a magazine-style Wordpress theme which makes extensive use of WP’s template tag system to create a non-traditional layout. It contains no images and only minimal CSS styling. Mainly it […]

    --February 6, 2008 @ 9:33 pm
  86. instruccion juego dado:

    instruccion juego dado…

    insurmountable:headlands,potential:manipulated upholstered …

    --February 10, 2008 @ 4:22 am
  87. Thèmes Wordpress | css-xhtml:

    […] http://www.darrenhoyt.com […]

    --February 11, 2008 @ 8:54 am
  88. The Fresh Press » Lead Story » Checking…:

    […] numbers in your own database. They can be found in your control panel under Manage->Categories. Read more about this […]

    --March 3, 2008 @ 3:08 pm
  89. The end of Premium wordpress themes? » hervedesign(dot)com:

    […] some wordpress designers like Darren Hoyt started to show to the world what could be done to give a bit a CMS taste to your wordpress […]

    --March 3, 2008 @ 6:31 pm
  90. The Business of Art» Your website » About this site design:

    […] Tweaking the template (most of this works for Branford Magazine as well): http://www.darrenhoyt.com/2007/07/24/in-praise-of-wordpress-template-tags-part-ii-the-magazine-layo… […]

    --March 10, 2008 @ 10:46 am
  91. Art Service Pfleging » Archive » Mimbo Magazine Theme:

    […] on the homepage are displayed using Custom Fields. Read more about this […]

    --March 11, 2008 @ 8:10 pm
  92. Chylly`s Celebrity Magazine Reloaded | Chylly`s Celebrity Magazine:

    […] Hilfe des Mimbo-Magazin Themes wurde aus dem Blog ein […]

    --March 14, 2008 @ 11:49 am
  93. Dumitru Bostan despre Web 2.0 » Wordpress » WP demo:

    […] numbers in your own database. They can be found in your control panel under Manage->Categories. Read more about this […]

    --March 17, 2008 @ 3:28 am
  94. Eyka » Blog Archive » Nowruz:

    […] des liens qui m’ont été utiles : Thème Magazine : Mimbo 2.2 en Français (merci Niss !), In Praise of Wordpress Template Tags, Part II: The Magazine Layout, Mimbo - Modifications avancées: Tutorial video, 6 astuces pour créer votre thème Wordpress […]

    --March 24, 2008 @ 3:43 pm
  95. en test rubrik:

    […] is a magazine-style Wordpress theme which makes extensive use of WP’s template tag system to create a non-traditional layout. It contains no images and only minimal CSS styling. Mainly it […]

    --March 27, 2008 @ 7:45 pm
  96. 3 testet är här nu:

    […] on the homepage are displayed using Custom Fields. Read more about this […]

    --March 27, 2008 @ 7:46 pm
  97. 二月河 » 康熙大帝 » Mimbo模板:

    […] is a magazine-style Wordpress theme which makes extensive use of WP’s template tag system to create a non-traditional layout. It contains no images and only minimal CSS styling. Mainly it […]

    --April 1, 2008 @ 11:12 pm
  98. Hello | Y e e e e e e:

    […] Category: Hollywood Mimbo is a magazine-style Wordpress theme which makes extensive use of WP’s template tag system to create a non-traditional layout. It contains no images and only minimal CSS styling. Mainly it […]

    --April 3, 2008 @ 12:23 pm
  99. Mimbo v2.2 - Wordpress Magazine Theme : Themes Blog’s:

    […] ID numbers in your own database. They can be found in your control panel under Manage->Categories. Read more about this […]

    --April 3, 2008 @ 9:55 pm
  100. for the life category | michael john grist:

    […] on the homepage are displayed using Custom Fields. Read more about this […]

    --April 7, 2008 @ 6:19 am
  101. study | michael john grist:

    […] on the homepage are displayed using Custom Fields. Read more about this […]

    --April 7, 2008 @ 6:19 am
  102. reviews | michael john grist:

    […] on the homepage are displayed using Custom Fields. Read more about this […]

    --April 7, 2008 @ 6:21 am
  103. Mimbo WordPress Themes:

    […] is a magazine-style Wordpress theme which makes extensive use of WP’s template tag system to create a non-traditional layout. It contains no images and only minimal CSS styling. Mainly it […]

    --April 8, 2008 @ 12:39 am
  104. Best Wordpress Themes » Mimbo Pro:

    […] Pro started life as an imaginary men’s magazine site used as an example in a tutorial about how to use Wordpress to publish magazine-style websites. But the demand from readers meant […]

    --April 13, 2008 @ 8:58 am
  105. NEVER WALK ALONG » my words » 我的未来:

    […] numbers in your own database. They can be found in your control panel under Manage->Categories. Read more about this […]

    --April 14, 2008 @ 11:58 am
  106. CultureEnJeu » Actualités Agir » Initiative:

    […] mentioned before, the images are pulled in using Custom Fields. For this to work, images must be stored in the /images/ folder of your theme. You can either […]

    --April 17, 2008 @ 10:39 am
  107. CultureEnJeu » Témoignages » Initiative:

    […] mentioned before, the images are pulled in using Custom Fields. For this to work, images must be stored in the /images/ folder of your theme. You can either […]

    --April 17, 2008 @ 10:56 am
  108. Estrenos de DVD » Lead Story » lalalal:

    […] numbers in your own database. They can be found in your control panel under Manage->Categories. Read more about this […]

    --April 17, 2008 @ 3:09 pm
  109. Oltre il deserto » Senza categoria » rggg:

    […] numbers in your own database. They can be found in your control panel under Manage->Categories. Read more about this […]

    --April 22, 2008 @ 5:01 pm
  110. Oltre il deserto » Senza categoria » rfrvtv 4t 4:

    […] numbers in your own database. They can be found in your control panel under Manage->Categories. Read more about this […]

    --April 22, 2008 @ 5:03 pm
  111. Oltre il deserto » categoria seconda » rfr 4t:

    […] numbers in your own database. They can be found in your control panel under Manage->Categories. Read more about this […]

    --April 22, 2008 @ 5:04 pm
  112. Oltre il deserto » categoria seconda » r4r 4:

    […] numbers in your own database. They can be found in your control panel under Manage->Categories. Read more about this […]

    --April 22, 2008 @ 5:06 pm
  113. Oltre il deserto » terza categoria » terza prorr:

    […] numbers in your own database. They can be found in your control panel under Manage->Categories. Read more about this […]

    --April 22, 2008 @ 5:11 pm
  114. Oltre il deserto » terza categoria » quarta:

    […] on the homepage are displayed using Custom Fields. Read more about this […]

    --April 22, 2008 @ 5:11 pm
  115. prova 2.5 CR 1 : oooo:

    […] mentioned before, the images are pulled in using Custom Fields. For this to work, images must be stored in the /images/ folder of your theme. You can either […]

    --April 28, 2008 @ 1:26 pm
  116. prova 2.5 CR 1 ::

    […] mentioned before, the images are pulled in using Custom Fields. For this to work, images must be stored in the /images/ folder of your theme. You can either […]

    --April 28, 2008 @ 1:27 pm
  117. 壹龍视觉 » 壹龍生活 » WordPress 模板:

    […] 概述 Mimbo是一杂志风格的wordpress的主题,为了创造出非传统的版面风格,主题广泛地使用WP’s template tag syste。主题模板中没用使用任何图片,并且只运用了极少的CSS代码。这样做的主要目的是为了使整个页面保持整洁,并能使设计者添加你想要的风格。 […]

    --April 29, 2008 @ 5:29 am
  118. WordPress Upgrade and New Theme :: radian:

    […] theme. Over the next few days or weeks I’ll continue to adjust some things. Monochrome is a magazine layout theme. Magazine themes offer layouts and features that turn blogs into versatile content management […]

    --May 10, 2008 @ 7:13 am


Leave a comment

(required)

(required)



  • rssRSS feed for comments on this post.