List of free wordpress theme frameworks

We collected best of free wordpress theme frameworks. WordPress theme framework are very useful for creating the wordpress themes faster. WordPress framework are readymade wordpress themes with all the pages. Some of them are seo friendly also. So that will save your lot of time while creating the wordpress theme. You can just download wp theme frameworks and build your wp theme on top of it. wp designers will love this list.

List of free wordpress theme frameworks

The best part of wordpress framework is, If you are not having any php programming knowledge then also you can easily develop the wordpress theme fast. You just need some CSS and HTML knowledge.

Here I created I list of free wordpress theme frameworks which are very useful for wordpress theme developers and designers.

Here is another useful link about Framework.

List of wordpress plugin development framework

Grid978

Earlier 960 grid system was very popular among the WP theme developers. 978 grid system is becoming very popular. Tutorial for wordpress theme with 978 grid

free wordpress theme Framework which is based on 978 grid system
free wordpress theme Framework which is based on 978 grid system

The Buffet Framework

The Buffet Framework is a theme framework designed not only for the theme developers who will be using the theme actions and filters to create the child themes, but also for the end users who would be able to add and remove what they want.

Like most WordPress theme frameworks, the Buffet Framework utlises WordPress actions and filters to allow theme developers to add additional content without editing the templates files using the child theme concept.

List of free wordpress theme frameworks
List of free wordpress theme frameworks

Carrington

achieve virtually any look and layout from within the one and only X WordPress Theme. Stacks allow you to choose from multiple, completely unique designs with just the click of a mouse, and there are currently four Stacks to choose from (with more in development).

List of free wordpress theme frameworks
List of free wordpress theme frameworks

Thematic

Thematic is a free, open-source, highly extensible, search-engine optimized WordPress Theme Framework featuring 13 widget-ready areas, grid-based layout samples, styling for popular plugins, and a whole community behind it. It’s perfect for beginner bloggers and WordPress development professionals.

List of free wordpress theme frameworks
List of free wordpress theme frameworks

Hybrid

You want a framework that puts you in control of your design, is 100% open source, and is completely $free to download? You’ve come to the right place. Hybrid Core isn’t used by hundreds of thousands of people around the world by mere chance.

Vanilla

Vanilla is not like any WordPress theme you’ve used before!

And what you see now is just the beginning. I’d write up a roadmap but it would scare me too much 😉

WP Framework

WP Framework is a blank WordPress theme framework, which aims to cut down on your theme development time. It gives you a solid theme foundation to build your project on top of so you can focus on project-specific features right from the git-go.

SandBox

One of the most influential blog themes, the Sandbox is a starting point for designers and developers—the original and best blank slate theme. The Sandbox is rich with semantic classes powered by dynamic functions and Microformats.

Acamas

Why does your blog theme suck? Is it the garish color scheme? Is it too hard to customize? Is it the clumsy typography and layout? Or is it just the overall lack of attention to the needs of bloggers with something intelligent to say? Lack of attention from a designer that hasn’t given a thought to the nature of blogging? I’ll tell you a secret: it’s all of those things. And here’s another secret: I hate most blog themes—but I love this one.

Suffusion

An elegant, responsive and versatile theme with a power-packed set of options and semantic HTML5-based markup. It supports Mega-Menus, custom layout templates, advanced support for custom post types, customizable drop-down menus, featured sliders, tabbed sidebars, a magazine layout and lots of enhanced widgets for Twitter, Flickr, Google etc. It has 19 widget areas

This list created by purabtech.in. If you are knowing about more free wordpress theme framework then please write to me and put a comment.

Free magazine style wordpress themes

Free magazine style wordpress themes are always favorite for all the web developers and clients. Magazine looks good and for readers also that give great experience. There are many free magazine style wordpress themes available for download. When I started working on wordpress first work I did for one US magazine. I migrated there 46 authors blog in wordpressMU. That time wordpress was not able to handle the multiblog system in wordpress.

Free magazine style wordpress themes

Here I created the list of free magazine style wordpress themes of 2011.

Pure Magazine WordPress Theme

Demo | Download

Scarlett Theme

Demo | Download

Traction

Demo | Download

Hamasaki Theme

Download | Demo

Snips

WPAPI

Demo | Download

Apticus

DemoDownload

Ajooba

Free magazine style wordpress themes
Free magazine style wordpress themes

DemoDownload

Rebel Magazine Theme

Download | Demo

AllTutorials

Demo | Download

Arthemia Free Theme

Download | Demo

maximum

Demo | Download

Jello Wala Mello Theme

Download | Demo

Polar Media Magazine WordPres Theme

Demo | Download

Mimbo Theme

Download | Demo

Art Magazine

Demo | Download

WP Gold Theme

Download | Demo

Kubrick on Crack

Demo | Download

Morning After Theme

Download | Demo

Clam Shell

Demo | Download

Forte Theme

Download | Demo

Incognito

Demo | Download

Premium News Theme

Download | Demo

Berita

Demo | Download

Angelia

Demo | Download

Hamasaki Theme

Download | Demo

WP Clear

Download | Demo

IsoTherm News

Download | Demo

Subtly Made

Download | Demo

Pro Start

Download | Demo

WebFolio

Download | Demo

FreshMotar

Download | Demo

Bueno

Download | Demo

PixDesign

Download | Demo

OrganicMoss Theme

Download | Demo

Moi Magazine

Download | Demo

FakeBlog

Download | Demo

Magazeen

Download | Demo

Elegant News

Download | Demo

Urbane

Download | Demo

I hope you will like this list. This post written by purabtech.in. If you found any more magazine style free wordpress themes then please put your comments or you can send email to me on wordpressapi@gmail.com.

smart way to use jquery in wordpress theme

I created many wordpress themes for various purpose and clients. Jquery is common requirement for all the project. That is for menu, slider or validation and for effects. In wordpress adding the Jquery is very easy because wordpress itself uses the Jquery for admin panel. They provided the wordpress api for adding the jquery in wordpress theme files.

smart way to use jquery in wordpress theme

wordpess developers are always looking for wordpress jquery plugin, wordpress include jquery, wordpress jquery ui, wordpress jquery noconflict, wordpress jquery theme, wordpress jquery version, wordpress jquery slider, wordpress jquery not working. Here is the solution

smart way to use jquery in wordpress theme
smart way to use jquery in wordpress theme

Following is the simplest way to add jquery in wordpress theme.You just need to use the following code in your wordpress theme  functions.php file.


function my_init() {
 if (!is_admin()) {
 wp_enqueue_script('jquery');
 }
}
add_action('init', 'my_init');

This way you can easily add the juqery in wordpress theme.

You can add the jquery from google also. Because google also like jquery. You just need to put the following function in your functions.php file.

function my_init() {
	if (!is_admin()) {

		wp_register_script('jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js', false, '1.4.2');

	}
}
add_action('init', 'my_init');

Main reason adding jquery from google is that will load the jquery faster in your site.

How you can use jquery in your theme.

you can use the jquery anywhere in theme file as follows


jQuery(function ($) {
 /* You can safely use $ in this code block to reference jQuery */
});

For DOM ready function or onload event you can use the juqery as follows.


jQuery(document).ready(function($) {

//Your custom code will goes here.

})

You can use the above function for slider or menu and any effect in your wordpress theme.

If you want to know about more Jquery and wordpress then you can refer following articles.

wordpress and jquery conflicts – How to solve that
100+ jquery and CSS techniques and Tips and tutorials
jquery tips for wordpress theme developers
Fadein and Fadeout effect through javascript
minimize, restore, maximize and hide functionality with javascript without using jquery
Complete Javascript form Validation now easy ( Checkbox, Websites, Email, Maxlength)

If you face any issue using jquery with wordpress then please write comment or email me on support@purabtech.in

Free html5 ready portfolio Alloka wordpress theme

DigCMS is our friend website. They launched the Free HTML5 ready portfolio wordpress theme called Alloka.

Alloka wordpress theme is nice jquery slider. It is very SEO friendly because of HTML5 features. It added the article, header, footer, nav tags in theme. Normally portfolio themes are not free but This theme is free for download.

Free html5 ready portfolio Alloka wordpress theme

Free html5 ready portfolio Alloka wordpress theme
Free html5 ready portfolio Alloka wordpress theme


High Quality (HQ) Free WordPres Themes collection, HTML5 Ready. Portfolio Style, News Paper Style, 1 Columns, 2 Columns, 3 Columns, Mixed Colums, Widgets,google adsense ready,  Seo Friendly, Jquery slider, and many more.

What’s on Alloka

  • HTML5 Ready
  • Widget Support
  • Fixed Width
  • 3 columns
  • Right Sidebar
  • Custom Footer
  • Google Ads
  • Gravatar Support
  • Custom Image Header
  • XHTML & CSS valid
  • WordPress 3.0
  • Menu Support
  • Premium version // Sub Page Menu
  • Premium version // Theme Options
  • Premium version // Banner Management
  • Premium version // Page Comment Templates
  • Premium version // FeedBurner Integration
  • Premium version // 2 Color Schemes ready
  • Premium version // Auto Generated Image (with or without custom fields)
  • Premium version // Beautiful Themes Options
  • Premium version // Features Post
  • Premium version // Social Bookmark integration
  • Jquery Slider
  • Logo and favicon configuration

[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]

If you want to see the more HTML5 ready free wordpress themes then please check following article.

https://purabtech.in/fresh-html5-ready-wordpress-themes/

If you want to suggest us more HTML5 ready free wordpress themes then please suggest us. Write to us on support@purabtech.in

best fresh and free html5 wordpress themes download

HTML5 is becoming very popular in the web and internet world, Here in article, we have best fresh and free html5 wordpress themes download which are responsive, HTML 5 is very seo friendly and In HTML5 introduced very nice html tags like aticle, header, footer, nav and many more advanced tags with effects.

best fresh and free html5 wordpress themes download

WordPress theme developer should start working on HTML5 for wordpress theme development. Here we created the fresh and free html5 ready wordpress themes. Which are freely avilable for download.

Ajooba

ajooba-theme,free html5 wordpress themes download
free html5 wordpress themes download

Free Dream

Orange Flower

Spectacular

Stakers

Temple Gate

Grey

Toolbox

CSS3

create links template page in wordpress theme

From 3rd version wordpress introduced links template. Links is same important like archive page. code snippet for create links template page in wordpress.

create links template page in wordpress

Links template page concept is new in wordpress theme. From wordpress 3 version wordpress introduced the links.php template file in wordpress themes. Adding the links page to your wordpress site or blog is very good for seo.Links page is same important like archive page.

create links template page in wordpress
create links template page in wordpress

You can add your friends and good websites in links page. You should use the links page very carefully because this page is very important for SEO. Google and other search engine is always look for links page where you can put other network or friends sites.

How to create links template page

Note: If you are wordpress developer then only use following code.

You need to create the links.php file in your wordpress theme folder. and put following code in that file.


<?php
/*
Template Name: Links
*/
?>
<?php get_header(); ?>

 <section id="primary">
 <div id="content" role="main">

<div id="archives">

<?php the_post(); ?>
 <h1><?php the_title(); ?></h1>
 <h2>Friends Network </h2>
 <ul>
<?php wp_list_bookmarks('title_li=&categorize=0'); ?>

</ul>

</div>
 </div><!-- #content -->
 </section><!-- #primary -->

<?php get_sidebar(); ?>
<?php get_footer(); ?>

After that go to your wordpress admin panel and create the links.php with links page template.

create links template page in wordpress
create links template page in wordpress

Publish links page and add the links page in to your menu.

Here are some links which are helpful to you.

create contact us template page in wordpress

If you link this article then please add my site in your links page or blogroll. If you are having any issues or question about links template then please write to me on support@purabtech.in.

wordpress add tags to custom post type

WordPress tutorial, wordpress add tags to custom post type. we can create the custom post type. In this tutorial I will show you to add category and tags.

wordpress add tags to custom post type

wordpress add tags to custom post type
wordpress add tags to custom post type

 

You just need use the following code in your arguments.

'taxonomies' => array('category', 'post_tag') // this is IMPORTANT

Here is full code which is I used in functions.php file

add_action('init', 'wordpress_themes');
 function wordpress_themes() {
 $wp_themes_args = array(
 'label' => __('Wordpress Themes'),
 'singular_label' => __('Wordpress Themes'),
 'public' => true,
 'show_ui' => true,
 'capability_type' => 'post',
 'hierarchical' => false,         
 'rewrite' => true,
  'supports' => array('title','editor','author','thumbnail','excerpt','comments'),
           'taxonomies' => array('category', 'post_tag') // this is IMPORTANT

 );
 register_post_type('wordpress-themes',$wp_themes_args);
 }

enable comments for custom post type

In wordpress we can create the custom post types. Now everybody is using custom post types in wordpress and need comments functionality for custom post types also. Custom post types are very important feature of wordpress. For enabling the comments for custom post type just use the following line.

enable comments for custom post type

'supports' => array('title','editor','author','thumbnail','excerpt','comments')

Following line will add the title, thumbnail, excerpt and comments functionality to your custom post type.

enable comments for custom post type
enable comments for custom post type

For more information use check my following code. I used following code in my functions.php file.

add_action('init', 'wordpress_themes');
 function wordpress_themes() {
 $wp_themes_args = array(
 'label' => __('Wordpress Themes'),
 'singular_label' => __('Wordpress Themes'),
 'public' => true,
 'show_ui' => true,
 'capability_type' => 'post',
 'hierarchical' => false,
 'rewrite' => true,
  'supports' => array('title','editor','author','thumbnail','excerpt','comments'),
           'taxonomies' => array('category', 'post_tag') // this is IMPORTANT

 );
 register_post_type('wordpress-themes',$wp_themes_args);
 }

Add Twitter and Facebook buttons to wordpress posts

wordpress tutorial, how to Add Twitter and Facebook buttons to wordpress posts.  we need to install the various plugins without installing any wp plugin.

Add Twitter and Facebook buttons to wordpress posts

For showing the facebook and twitter button in wordpress post many times we need to install the various plugins but with following code you dont need to install the wordpress plugin.

Add Twitter and Facebook buttons to wordpress posts
Add Twitter and Facebook buttons to wordpress posts

If you are wordpress developer then only use following code. Open your functions.php file from your theme and put following code in that file.

function facebook_twitter_button($content){
    if(!is_feed() && !is_home()) {
        $content .= '<div class="facebook-twitter-button">
                    <a href="http://twitter.com/share"
class="twitter-share-button"
data-count="horizontal">Tweet</a>
                    
src="http://platform.twitter.com/widgets.js">
                    <div class="facebook-share-button">
                        <iframe
src="http://www.facebook.com/plugins/like.php?href='.
urlencode(get_permalink($post->ID))
.'&amp;layout=button_count&amp;show_faces=false&amp;width=200&amp;action=like&amp;colorscheme=light&amp;height=21"
scrolling="no" frameborder="0" style="border:none;
overflow:hidden; width:200px; height:21px;"
allowTransparency="true"></iframe>
                    </div>
                </div>';
    }
    return $content;
}
add_action('the_content', 'facebook_twitter_button');

timthumb php script for image resizing with wordpress

wordpress tutorial, timthumb php script for image resizing with wordpress. We all know what is the tumthumb script. mainly the worpdress theme developers used the tumthumb php script for resizing the images.

timthumb php script for image resizing with wordpress

But now we dont need to use the tumthumb script in wordpress theme because wordpress api is supporting the similier functionality in wordpress.

Using the wordpress hook we can specify the thumbnail size.

You can set the post image thumbnail size using wordpress hook.

Just copy paste the following code in to your functions.php file


function custom_thumbnail_size() {
return 128; // or whatever you want
}
add_filter('wp_thumbnail_max_side_length','custom_thumbnail_size');

timthumb php script for image resizing with wordpress
timthumb php script for image resizing with wordpress