Category Archives: Wordpress

The best WordPress hosting provider

WP Engine! By far the best. This statement comes from me, a guy who is into WordPress development since 2008. During my career I have used a lot of hosting providers like Hostgator, Siteground, Rackspace, BlueHost, DreamHost, JustHost etc. So why do I think that WP Engine is the best? Here are 3 features that […]

Also posted in Internet, Open Source for Web | Leave a comment

WordPress Add Pagination

The easiest method I found to add a good pagination: 1. Install WP-PageNavi plugin. 2. In the template file, the loop should be like this: <?php // The Query, $the_query = new WP_Query( 'category_name=blog&amp;paged='.$paged ); // The Loop which loops through all the posts of category while ( $the_query->have_posts() ) : $the_query->the_post(); ?> <?php the_content(); […]

Posted in Wordpress | 1 Comment

WordPress Basis Theme

I just discovered the WP Basis Theme. It’s a clean and very minimalistic theme. I will use it on my next project for sure.

Posted in Wordpress | 5 Comments