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.

where to submit free wordpress themes

When I started developing the wordpress theme I was worried about where to submit the wordpress theme. I already developed many wordpress plugins but that plugins I submitted to wordpress plugin site. If you are wp theme developer and you want to publish your theme on multiple sites them here is list of URLs where you can submit free wordpress themes.

submit free wordpress themes
submit free wordpress themes

After doing googling I found some site where I can submit my wordpress theme and then I can get more traffic for my wordpress themes.

You can submit your wordpress theme to our site. Please send email to our team with theme screenshots and description. You need to send demo URL and download link for your wordpress theme. We will publish your wordpress theme on our showcase page.

You just need send email to our team on wordpressapi@gmail.com

You can check our wordpress theme showcase page:

Our Showcase for Free wordpress themes

Here I created the list websites where you need to submit your wordpress theme:

[viral-lock message=”Lists are 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.”]

[/viral-lock]

how to add a favicon to your wordpress blog

We all know what is favicon logo. WordPress tutorial, how to add a favicon to your wordpress blog. In wordpress theme you can easily add the favicon logo using following code and put in functions.php file

how to add a favicon to your wordpress blog

you just need to open your functions.php file and put following code in that file.

function childtheme_favicon() { ?>
<link rel="shortcut icon" href="<?php echo bloginfo('stylesheet_directory') ?>/images/favicon.png" >
<?php }
add_action('wp_head', 'childtheme_favicon');
how to add a favicon to your wordpress blog
how to add a favicon to your wordpress blog

Note: your favicon.ico file need to placed under theme->images folder. then only this code will work

Set multiple excerpt length for custom post type wordpress

From wordpress 3.0 version wordpress intruded the custom post type function. Many wordpress theme developers are using custom post type method for showing different sections.

Set multiple excerpt length for custom post type wordpress

Many times we need to change the excerpt text length and showing on main landing page of custom post type.

Set multiple excerpt length for custom post type wordpress
Set multiple excerpt length for custom post type wordpress

You can set the different excerpt length for each custom post type. you just need to open functions.php file and put following code in file.


function new_excerpt_length($length) {
global $post;
if ($post->post_type == 'post')
return 32;
else if ($post->post_type == 'products')
return 65;
else if ($post->post_type == 'testimonial')
return 75;
else
return 80;
}
add_filter('excerpt_length', 'new_excerpt_length');

Using above code you can set the many excerpt lengths for your custom post type.

If you are still facing issue with custom post then please do write to me.

how to use wordpress shortcode in text widget

wordpress tutorial, how to use wordpress shortcode in text widget. In your shortcode in your wordpress widget section you need to use only following code. From wordpress 2.5 version shortcode method is included in wordpress.

how to use wordpress shortcode in text widget

add_filter('widget_text','do_shortcode');
use wordpress shortcode in widget
use wordpress shortcode in widget

If you need the more information about using the wordpress short code then refer the following article
https://purabtech.in/use-the-wordpress-shortcode-api-in-wordpress-pages/

How to use bloginfo in wordpress theme

For each wordpress theme developer the bloginfo() function is very useful. If you are not used the bloginfo function then use the bloginfo function. There is great help is provided wordpress api. In every wordpress theme we need to use the bloginfo method. bloginfo() function is useful. If you not used bloginfo function than use bloginfo function. Every theme we need to use bloginfo in wordpress theme.

How to use bloginfo in wordpress theme

How to use bloginfo in wordpress theme
How to use bloginfo in wordpress theme

Displays information about your blog, mostly gathered from the information you supply in your User Profile and General Options from the WordPress Administration panel.

Following parameter is passed in this method.


name = TestWpapi
description = Just another WordPress blog
admin_email = admin@example

url = http://example/home
wpurl = http://example/home/wp

stylesheet_directory = http://example/home/wp/wp-content/themes/child-theme
stylesheet_url = http://example/home/wp/wp-content/themes/child-theme/style.css
template_directory = http://example/home/wp/wp-content/themes/parent-theme
template_url = http://example/home/wp/wp-content/themes/parent-theme

atom_url = http://example/home/feed/atom
rss2_url = http://example/home/feed
rss_url = http://example/home/feed/rss
pingback_url = http://example/home/wp/xmlrpc.php
rdf_url = http://example/home/feed/rdf

comments_atom_url = http://example/home/comments/feed/atom
comments_rss2_url = http://example/home/comments/feed

charset = UTF-8
html_type = text/html
language = en-US
text_direction = ltr
version = 2.9.2

following is examples for using the bloginfo() method.

//Show Blog Description

//Show Blog Title

//ading the style.css
//ping back url
//for content type

How to use the bloginfo() function in wordpress theme
How to use the bloginfo() function in wordpress theme

how to generate Facebook fan code

Many people want to add the facebook fan code and like button in your website for fb page. we given information about how to generate Facebook fan code.

how to generate Facebook fan code

For generating the facebook fan code just go to following URL:

http://developers.facebook.com/docs/reference/plugins/like-box

Just put your facebook page url in URL section. specify the width of widget and color scheme. then uncheck the show header and show stream checkbox.

how to generate Facebook fan code
how to generate Facebook fan code

If you want to show the connected photos then put value in connections textbox. But I recommend to use the zero value in that because that will slowdown your website. Then click on get code button. Then you will see the facbook in page popup. As per my suggestion use the iframe tag. Do not use the javascript tag for your website.

That will again for your website performance related. As much script tag you include in your website that much slowness will happen to your website.

Then use the iframe tag code in your website.

If you are using the wordpress then just use the text widget for showing your facebook fan widget.

If you are having any issues or questions about adding the facbook fan code in your website then please write to me.

 

how to generate Facebook fan code
how to generate Facebook fan code

convert plain text URI to HTML links in wordpress themes

When you put some URL and email address you need to manually add the link URL to that text. This action always takes the some time of wordpress blogger. WordPress has facility to add the links to your URL and email address automatically.

 

convert plain text URI to HTML links in wordpress

This facility is available in wordpress since wordpress 2.7 version but many wordpress theme and plugin developers never used this functionality.

WordPress provides the make_clickable() function for convert plain text URI to HTML links. This function able to convert URI, www, ftp, and email addresses. Finishes by fixing links within links. You just need to pass the string parameter to this method.

More detail information you can find in following file.
wp-includes/formatting.php.

You can use this method in your functions.php file also. Use the following code.

add_filter('the_content', 'make_clickable');

By using this code you are able to covert the URI, www, ftp, and email addresses in to link.

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

most popular posts wordpress without plugin

Many times you want to show the popular posts in your wordpress theme and you use popular post wordpress plugin or widget for showing the popular posts in your wordpress theme. As much possible you need to avoid the wordpress plugins for minimal code.

most popular posts wordpress without plugin

With very easy steps you can fetch the most popular posts from your wordpress. Most common trick or technique is on comments base you can fetch the popular posts.

You just need to open your functions.php file from wordpress posts and put following code in file.


// Get Most Popular Posts in theme
function popular_posts_by_comments( $posts = 5) {
 $popular = new WP_Query('orderby=comment_count&posts_per_page='.$posts);
 while ($popular->have_posts()) : $popular->the_post();
?>
<li>
<div>
 <a title="<?php the_title(); ?>" href="<?php the_permalink() ?>"><?php the_title(); ?></a>
 <span><?php comments_popup_link('0 Comment', '1 Comment', '% Comments', 'comments-link', ''); ?></span>
 </div> <!--end .info-->
 <div></div>
</li>
<?php endwhile;
}

This is very easy code to fetch you wordpress popular posts. Here I am fetching only 5 popular posts from wordpress. You can fetch the multiple popular posts by changing the $post variable value.

In wordpress theme sidebar or footer section if you want to show the popular post then just use following code.

popular_posts_by_comments();

most popular posts wordpress without plugin
most popular posts wordpress without plugin

where you want to show the popular posts.

show popular posts without wordpress plugin in theme
show popular posts without wordpress plugin in theme

Create multiple widgets in wordpress theme

WordPress tutorial for, In this article we will show, how to Create multiple widgets in wordpress theme. Widgets for very important in wordpress themes and plugins. First I need to tell you this widget api is located in following file.

wp-includes/widgets.php

For enable the sidebar support in wordpress theme you need to register atleast one sidebar in wordpress api. For enabling the side bar you need to just open the functions.php file and put following code in that file.

if ( function_exists('register_sidebar') )
register_sidebar();

This is enable the global sidebar for your wordpress theme.

If you want multiple sidebar in your wordpress theme then use the following code. I created two sidebars in my wordpress theme. First is normal sidebar and second is footer sidebar.

For main sidebar showing just open your sidebar.php file put following code in that file.


if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Main Sidebar') ) :
 endif;

For showing second widget in footer section open your footer.php file and put following code in that file.


if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer Sidebar') ) :
 endif;

Then go to your widget section through admin panel and select your widget which you want to show in widget sections.

Create multiple widgets in wordpress theme
Create multiple widgets in wordpress theme

If you are having any issues or question about using widget in wordpress theme then write to me.