How To Create a WordPress Theme: The Ultimate WordPress Theme Tutorial

Posted on June 22, 2009 by Ian Stewart

Update: We’ve created a second edition of this popular tutorial! It contains updated code samples, coverage of the latest theme development techniques, and more. Check it out at The ThemeShaper WordPress Theme Tutorial: 2nd Edition.

In only 11 individual lessons this WordPress Theme Tutorial is going to show you how to build a powerful, up-to-date, WordPress Theme from scratch. As we go along I’ll explain what’s happening including (for better or worse) my thinking on certain techniques and why I’m choosing one path over another. Essentially, I’ll be teaching you everything you need to know about WordPress Theme development.

via How To Create a WordPress Theme: The Ultimate WordPress Theme Tutorial | ThemeShaper.

How to Code a WordPress 3.0 Theme from Scratch

March 8th, 2011 by Keenan Payne | WordPress | 235 Comments

With the release of WordPress 3.0 came the implementation of many new features to the popular content management system. In this tutorial we are going to show you exactly how to code a WordPress 3.0 theme from the ground up to take advantage of all of these new features, as well as create a blogging-ready, minimal theme.

via How to Code a WordPress 3.0 Theme from Scratch.

Theme-Dateien: comments.php

Zumal er bei Bilder-Postings von GOOGLE auch gern als „Textvorschau“ missbraucht wird fragen sich viele, wie man diesen WordPress-eigenen Erklärtext aus Themes wegbekommt: „Du kannst folgende HTML-Tags benutzen: <a href=““ title=““> <abbr title=““> <acronym title=““> <b> <blockquote cite=““> <cite> <code> … Weiterlesen →

Theme-Dateien: style.css

Es ist hilfreich,ganz oben im Stylesheet das Charset zu definieren, besonders wenn man Kommentare in Sprachen mit Sonderzeichen (Akzente, Umlaute) verfasst. Das Charset MUSS zu allererst im Stylesheet festgelegt werden und die Syntax ist zwingend wie folgt: @charset "UTF-8"; Siehe … Weiterlesen →

As long as you’re creating something for yourself, you can do whatever is easier… as soon as you’re starting to create a child theme for others, it’s better to follow at least a couple of guidelines 😉 #

Looping

www.themelab.com/2008/04/04/the-ultimate-guide-to-… perishablepress.com/easily-adaptable-wordpress-loo… justintadlock.com/archives/2009/01/23/coding-the-w… www.dirkpfuhl.de/1343-wordpress-custom-loop-ausgab… www.elmastudio.de/wordpress/wordpress-tipps-der-lo… digwp.com/2011/05/loops/ www.catswhocode.com/blog/multiple-wordpress-loops www.studiograsshopper.ch/code-snippets/category-de…

Optimus WP by Artem Shashkin

Mods Single-Portfolio-Seite: Kunde mit Link single-portfolio.php – vor Zeile 22 $gr_client_url = get_post_meta( $post->ID, ‚gr_client_url‘, true ); Zeile 488: <a href=“<?php echo $gr_client_url; ?>“ target=“_blank“><?php echo $client; ?></a> Dann jedem Kunden ein benutzerdefiniertes Feld namens gr_client_url mit der entsprechenden URL … Weiterlesen →

Kommentare optional und per Artikel komplett ausblenden

www.bombolom.com/weblog_en/wordpress/PluginHideSho… www.google.com/search?q=wordpress+if+comments+clos… www.problogdesign.com/wordpress/advanced-wordpress… en.forums.wordpress.com/topic/hide-comment-box-on-… www.google.com/search?q=Commenting+disabled+after+… wordpress.org/extend/plugins/hide-or-show-comments… wpengineer.com/1420/hide-the-comment-pagination/ forum.bytesforall.com/showthread.php?t=5915 www.instantshift.com/2009/02/08/30-most-wanted-wor…

Kerikeri

Die Einzelartikel-Ansicht wartet mit dem automatischen Einbau des Artikelbildes (post thumbnail) auf. Will man das nicht, etwa um Bilddoppler bei Artikeln, die nur aus einem Bild bestehen zu vermeiden, so kann man – etwa in der content.php oder in der … Weiterlesen →