Tuesday, December 08th, 2009
Author: Jon B
5 Web Design Tips for Beginners
1. Layout In web design, the first step is to choose the layout which best suites your needs. Layout is basically the placement of your content, images and information in your web page. Normally layout is designed in Adobe Photoshop or any other graphic editing software. Please consider these few things while designing your layouts. [...]
[ Read More ]
Thursday, April 09th, 2009
Author: Jon B
How To Remove Categories From Your URL
WordPress is my favorite blogging platform but it’s not perfect by all means. There’s still a number of features I would like to see in WordPress, one of them is having the categories to not appear in my url. I’ve seen and tried various plugins and WordPress hacks but I’m not completely satisfied with the [...]
[ Read More ]
Wednesday, December 10th, 2008
Author: Jon B
Reverse The WordPress Comments From Newest To Oldest
If you want to display your comment list from newest to oldest, here is a simple solution, find your functions.php page located in ../wp-content/themes/your-theme-name/ and add the following function: function reverse_comments($comments,$id) { $comments = array_reverse($comments); return $comments; } add_filter(‘comments_array’,'reverse_comments’,10,2); Voila! Your WordPress comment list should now display from newest to oldest.
[ Read More ]