Tag-Archive for » WordPress «

Free WordPress Template from JBWEBDEV

I’ve been meaning to put out my very own WordPress theme but haven’t had much time to fully devote to it. Well at long last, here it is…a free WordPress template which I titled “OceanicFlight”, because I’m a big Lost fan! Do what you want with it, it’s all yours free of charge. I do [...]

[ Read More ]

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 ]

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 ]