free 40+ professional three column wordpress themes

people are searching 3 column themes. I found professional three column wordpress themes and I made a very nice and unique list of wordpress themes.

professional three column wordpress themes

Many people are sometimes searching for 3 column wordpress themes. I found professional 3 columns worpdress themes and I made a very nice list of wordpress themes. In this post you can view demo and for download theme you’ve to click on image of theme. So enjoy them and don’t forget to share! Thanks.

1. Pure Magazine

[ Demo ]

professional three column wordpress themes
professional three column wordpress themes

2. Bright-White

[ Demo ]

3. Blue News

[ Demo ]

4. Aristo

[ Demo ]

5. WP Premium

[ Demo ]

6. Freshblog

[ Demo ]

7. Fervens

[ Demo ]

8. Fantomalist

[ Demo ]

9. DailyPress

[ Demo ]

10. Carrington

[ Demo ]

11. Worn Wall

[ Demo ]

12. Work-a-holic

[ Demo ]

13. Unwind

[ Demo ]

14. Un.complicated

[ Demo ]

15. The Standard

[ Demo ]

16. The Morning After

[ Demo ]

17. Neoblue

[ Demo ]

18. Mercury

[ Demo ]

19. Magloss V2

[ Demo ]

20. Liliya

[ Demo ]

21. Grid Focus

[ Demo ]

22. The Daily Grind

[ Demo ]

23. Smooth

[ Demo ]

24. Shaken Grid

[ Demo ]

25. PixDesign Silver

[ Demo ]

26. Oxygenous

[ Demo ]

27. Mainam Vintage

[ Demo ]

28. Irresistible

[ Demo ]

29. Grass Roots

[ Demo ]

30. FREEmium

[ Demo ]

31. EcoNox

[ Demo ]

32. Demet

[ Demo ]

33. BlueBubble

[ Demo ]

34. Atlantis

[ Demo ]

35. Artwork

[ Demo ]

36. Welding

[ Demo ]

37. Solio

[ Demo ]

38. Simple Magazine Red

[ Demo ]

39. Riviera Magazine

[ Demo ]

40. Rewire Theme

[ Demo ]

41. Red Light Physics

[ Demo ]

42. Woodtastic

[ Demo ]

43. Simple Balance 2.0

[ Demo ]

44. Dilectio

[ Demo ]

wordpress pagination style without wordpress plugin

wp-pagenavi is most popular. wordpress pagination style without wordpress plugin, We need to install wp-pagenavi wordpress plugin for pagination styling.  When we think wordpress pagination style then first thing came in mind which is. We need to install wp-pagenavi wordpress plugin for pagination styling. There are multiple pagination plugins available for pagination styling but wp-pagenavi is most popular.

wordpress pagination style without wordpress plugin

I always recommend wordpress theme developers to not to use the wordpress plugins as much possible because any wordpress plugin will install the extra unuseful code also.

wordpress pagination style without wordpress plugin
wordpress pagination style without wordpress plugin

Here in this article I am giving you the example about wordpress pagination without using any wordpress plugin.

Just open your functions.php file and put following code.


function wpapi_pagination($pages = '', $range = 4)
{
 $showitems = ($range * 2)+1;

 global $paged;
 if(empty($paged)) $paged = 1;

 if($pages == '')
 {
 global $wp_query;
 $pages = $wp_query->max_num_pages;
 if(!$pages)
 {
 $pages = 1;
 }
 }

 if(1 != $pages)
 {
 echo "</pre>
<div class="\&quot;wpapi_pagination\&quot;">Page ".$paged." of ".$pages."";
 if($paged > 2 && $paged > $range+1 && $showitems < $pages) echo "<a href="&quot;.get_pagenum_link(1).&quot;">« First</a>";
 if($paged > 1 && $showitems < $pages) echo "<a href="&quot;.get_pagenum_link($paged - 1).&quot;">‹ Previous</a>";

 for ($i=1; $i <= $pages; $i++)
 {
 if (1 != $pages &&( !($i >= $paged+$range+1 || $i <= $paged-$range-1) || $pages <= $showitems ))
 {
 echo ($paged == $i)? "<span class="\&quot;current\&quot;">".$i."</span>":"<a class="\&quot;inactive\&quot;" href="&quot;.get_pagenum_link($i).&quot;">".$i."</a>";
 }
 }

 if ($paged < $pages && $showitems < $pages) echo "<a href="\&quot;&quot;.get_pagenum_link($paged">Next ›</a>";
 if ($paged < $pages-1 &&  $paged+$range-1 < $pages && $showitems < $pages) echo "<a href="&quot;.get_pagenum_link($pages).&quot;">Last »</a>";
 echo "</div>
<pre>\n";
 }
}

Above function will give the wordpress pagination style like google search engine.

Then open style.css file from your wordpress theme file and put following code in that file.


.wpapi_pagination {
clear:both;
padding:20px 0;
position:relative;
font-size:11px;
line-height:13px;
}

.wpapi_pagination span, .wpapi_pagination a {
display:block;
float:left;
margin: 2px 2px 2px 0;
padding:6px 9px 5px 9px;
text-decoration:none;
width:auto;
color:#fff;
background: #555;
}

.wpapi_pagination a:hover{
color:#fff;
background: #3279BB;
}

.wpapi_pagination .current{
padding:6px 9px 5px 9px;
background: #3279BB;
color:#fff;
}

Then finally where you want to show the wordpress pagination there in area put following code (index.php, etc..)


if (function_exists("wpapi_pagination")) {
 wpapi_pagination($additional_loop->max_num_pages);

 

wordpress pagination style without wordpress plugin
wordpress pagination style without wordpress plugin

If you are having any issues or question about adding the wordpress pagination without plugin then please write me.

 

 

how to use shortcodes in wordpress posts

Short code api is introduced in wordpress from 2.5 version. Since short code is very popular and used by wordpress plugin developers. Many wordpress theme and plugin developers do use the shortcode api regularly.

how to use shortcodes in wordpress posts

how to use shortcodes in wordpress posts
how to use shortcodes in wordpress posts

Using shortcode api is very easy. If you want to use the shortcode in your wordpress theme then open your functions.php file and put following code. Here is example for using shortcode.


function wordpressapi_content() {

echo "Hello World";

}

add_shortcode('wordpressapi_content', 'wordpressapi_content');

Create any page and just put following line in that post or page.

[wordpressapi_content]

If you put following code in your page or post then you can see the hello world content in your page or post.

If you want to add the google adsence using shortoce then use the following code.


function google_adsence($atts) {
 return ' "<script type="quot;text/javascript"quot;">"<!--
google_ad_client = "quot;ca-pub-4949877136251097"quot;;
/* 160x600, created 4/7/08 */
google_ad_slot = "quot;5503695728"quot;;
google_ad_width = 160;
google_ad_height = 600;
//--">
"</script">
"<script type="quot;text/javascript"quot;
src="quot;http://pagead2.googlesyndication.com/pagead/show_ads.js"quot;">
"</script">
'
}

add_shortcode('google_adsence', 'google_adsence');

Then just put the following words in your post or page or widget section.

[google_adsence]

Your adsence will be displayed. For advanced information about shortcode you should check following URL

http://svn.automattic.com/wordpress-tests/wp-testcase/test_shortcode.php

If you are having any issues or question about shortcode then please write to me.

Most famous wordpress themes

In this article I will tell most famous and downloaded wordpress themes. Some of worpdress themes are so much popular and highly used by the blogger and Some wordpress themes are downloaded record time.

Most famous wordpress themes

In article we will tell Most famous wordpress themes and downloaded wordpress themes. Some of worpdress themes are so much popular and highly used by users

Here are some very famous wordpress themes among wordpress users and following wordpress themes are downloaded mostly and all the time.

TwentyTen

Most famous wordpress themes
Most famous wordpress themes

Demo | Download

Mystique

Most famous wordpress themes
Most famous wordpress themes

Demo | Download

Atahualpa

Demo | Download

Suffusion

Demo | Download

Pixel

Demo | Download

LightWord

Demo | Download

Motion

Demo | Download

Thematic

Demo | Download

Arjuna X

Demo | Download

Piano Black

Demo | Download

Arras Theme

Demo | Download

ChocoTheme

Demo | Download

The Erudite

Demo | Download

Facelook

Demo | Download

Magazine Basic

Demo | Download

Hybrid

Demo | Download

Constructor

Demo | Download

Graphene

Demo | Download

simpleX

Demo | Download

Calotropis

Demo | Download

best free premium wordpress themes for download

In article, we have a list of best free premium wordpress themes for download which are available free download. searching for free premium wordpress themes. Everybody was searching for free premium wordpress themes for download. Many people thought there are very nice wordpress themes but that are not freely available. Here in this article I created a list of premium wordpress themes which are available for free download.

best free premium wordpress themes for download

Artwork WordPress Theme

best free premium wordpress themes for download
best free premium wordpress themes for download

Download

Mimbo Magazine

Preview | Download

A Better Place

Demo | Download

Brandford Magazine

Preview | Download

Bulletin Board WordPress Theme

Download

Movie Theater WordPress Theme

Download

Children And Toys WordPress Theme

Download

WP-Polaroid

Preview | Download

Coda

Demo | Download

Motion Theme

Demo | Download

The Morning After Theme

Demo | Download

WordPress themes for Beer Bars and Drinks

WordPress became popular in last few year. The best part of wordpress the great SEO tool. That’s why many people want to create their website using wordpress. It is fast and highly customizable.

Free WordPress themes for Beer Bars and Drinks

Here I am going to give some cool wordpress themes for Beer Bars and Drinks collection. It is free wp themes for beer bars. You can find many free wordpress themes which can be useful for beear bars and hotels. Following list is unique and carefully collected wp themes. If you use these themes then you can easily customize them as per your requirements.

We did used some these themes for our clients and after few customization and adding new content and images, It was looking so nice and great. You should try these themes. If you are looking for beer bars wordpress themes.

1. Red Wine

Wordpress themes for Beer Bars and Drinks
WordPress themes for Beer Bars and Drinks

Demo | Download

2. Wine Clean

Demo | Download

3. Unwind

Demo | Download

4. Darkred

Demo | Download

5. New-wine

Demo | Download

Free WordPress theme MDesign for download

This wordpress theme is very simple blog design with sober colors.  this theme has left sidebar and simple bold title. This website is submitted by Mahesh Kshirsagar.

Free WordPress theme MDesign for download

MDesign

 

Free simple WordPress theme MDesign for download
Free simple WordPress theme MDesign for download

[viral-lock message=”Download and Demo Link is Hidden! It’s Visible for Users who Liked/Shared This article on Facebook or Twitter or Google+. Like or Tweet this article to reveal the content.”]

Demo | Download

[/viral-lock]

Download wp bluemagic Free wordpress theme

We Created the professional blue color based wordpress theme. User can download wp-bluemagic wordpress theme form here.

Download wp bluemagic Free wordpress theme

wp-bluemagic

Download wp bluemagic Free wordpress theme
Download wp bluemagic Free wordpress theme

[viral-lock message=”Download and Demo Link is Hidden! It’s Visible for Users who Liked/Shared This article on Facebook or Twitter or Google+. Like or Tweet this article to reveal the content.”]

Demo | Download

[/viral-lock]

how to register multiple sidebar in wordpress

Many wordpress developers and PHP developers who are new in to wordpress development. They really searching for how to add a dynamic or multiple side in wordpress theme. many sidebar or widget are very important to add in any wordpress theme for seo purpose also so you can add the widgets using our code sample.

register multiple sidebar in wordpress

Many wordpress developers got requirement to add separate sidebar for each page or any specific page and that sidebar need to be controlled by wordpress admin.

In this tutorial I will show you how to simply add the multiple or dynamic sidebar to wordpress theme. I really think creating the or putting separate css and options in  the sidebar and admin has no control over the sidebar.

Just use my code to create the multiple sidebar in wordpress theme. This following function is provided by wordpress api only. Open your functions.php file from your wordpress theme folder


<!--?<span class="hiddenSpellError" pre="" data-mce-bogus="1"-->php
 if(function_exists('register_sidebar'))
 register_sidebar(array(
 'name' => 'Home Page', // The sidebar name you can choose as per your choice to register
 'before_widget' => 'PUT YOUR OPENING CSS DIV AND CSS CLASSES AND IDS HERE',
 'after_widget' => 'CLOSE THE DIV',
 'before_title' => '<h2>',
 'after_title' => '</h2>',
 ));
?>

This is sample code for multiple pages your can use following code:


<!--?<span class="hiddenSpellError" pre="" data-mce-bogus="1"-->php
     // Home Page sidebar
     if(function_exists('register_sidebar'))
          register_sidebar(array(
          'name' => 'Home Page',
          'before_widget' => 'PUT YOUR OPENING CSS DIV AND CSS CLASSES AND IDS HERE',
          'after_widget' => 'CLOSE THE DIV',
          'before_title' => '<h3>',
          'after_title' => '</h3>',
     ));
     // Blog Page sidebar
     if(function_exists('register_sidebar'))
          register_sidebar(array(
          'name' => 'Blog Page',
          'before_widget' => 'PUT YOUR OPENING CSS DIV AND CSS CLASSES AND IDS HERE',
          'after_widget' => 'CLOSE THE DIV',
          'before_title' => '<h3>',
          'after_title' => '</h3>',
     ));
     // Contact us Page sidebar
     if(function_exists('register_sidebar'))
          register_sidebar(array(
          'name' => 'Contact Page',
          'before_widget' => 'PUT YOUR OPENING CSS DIV AND CSS CLASSES AND IDS HERE',
          'after_widget' => 'CLOSE THE DIV',
          'before_title' => '<h3>',
          'after_title' => '</h3>',
     ));
     // About us Page sidebar
     if(function_exists('register_sidebar'))
          register_sidebar(array(
          'name' => 'About us',
          'before_widget' => 'PUT YOUR OPENING CSS DIV AND CSS CLASSES AND IDS HERE',
          'after_widget' => 'CLOSE THE DIV',
          'before_title' => '<h3>',
          'after_title' => '</h3>',
     ));

?>

Here is Big question, How can you call the different sidebars and manage it. Go to wordpress admin and you will find and four side bars present in widgets sections as per this code. You can just drag and drop the widgets as your choice.

Open your sidebar.php file put following code in that file.

<?php
is_page('Home Page') {
     if (!function_exists('dynamic_sidebar') || !dynamic_sidebar('Home Page')) :
     endif;
}
?>
how to register multiple sidebar in wordpress
how to register multiple sidebar in wordpress

You can use the following type of code in your sidebar.php file as per your condition. If you have any issues get back to me.

Best free black WordPress Themes – Dont miss it

So many people like black color. They looking for black and white WordPress themes. We like black themes. Here List of best free black wordpress themes, Black color is always loved by people so here I collected the very nice wordpress themes which are black.

If we kept black color in background then web page will become more attractive as graphic designers are says. I specially like black wordpress themes.

Best free black WordPress Themes – Dont miss it

Here in this article I will give information about some really cool Black WordPress themes.
1. Michael Jackson 1.0

Best free black WordPress Themes - Dont miss it
Best free black WordPress Themes – Dont miss it

Demo | Download

2. Revision 1.0

Best free black WordPress Themes - Dont miss it
Best free black WordPress Themes – Dont miss it

Demo | Download

3. Join Me 1.0

Demo | Download

4. Photo Portfolio 1.0

Demo | Download

5. Randy Candy

Demo | Download

6. Piano Black

Demo | Download

7. Dragonskin

Demo | Download

8. The Scenery

Demo | Download

9. Dreamline

Demo | Download

10. Beardsley

Demo | Download

11. Easy Black WordPress Theme

Demo | Download

12. FMulti WordPress Theme

Demo | Download

13. BlacknBlue WordPress Theme

Demo | Download

14. Darkened Waters WordPress Theme

Demo | Download

15. Hemingway WordPress Theme

Demo | Download