Tag Archives: programming

45 | Category Archive Navigation

0

A simple next/previous category navigation for the category archive; particular useful if you use your categories to organise your blog, for instance your products, or photos… the above has a commonly used html structure to help with formatting.

Posted in Easy Coding for Wordpress, Tips & Tricks, Wordpress | Tagged , , , , , , , | 2 Responses

43 | Hierarchical Category List with Post Titles

0

If your wordpress site is organized with categories, it might be very useful to have a template to show an organized list of all categories with the associated posts. This would work similar to the category widget with the setting … Check the whole post »

Posted in Wordpress | Tagged , , , , , , , , | 13 Responses

42 | Easy Coding for WordPress: Posts in 3 Columns

0

Sometimes it is the simple things that are hard to find. A basic structure to arrange posts into three columns: The minimal styles needed for the three columns: <div id=”column-wrap”> <?php $count = 0; while(have_posts()) : the_post() ?> <div class=”box<?php … Check the whole post »

Posted in Easy Coding for Wordpress, Tips & Tricks | Tagged , , , , , | 2 Responses

37 | Finding Exact Information on WordPress Functions

2

According to my motto: ‘Knowledge is Knowing where it is Written’ by Albert Einstein – I like to look up the core files of WordPress where the functions are defined. What I quite often do when I come across something … Check the whole post »

Posted in Tips & Tricks | Tagged , , , , , | 3 Responses