Browsing articles in "wordpress"
Dec
8
2011

How to get URI of feedburner

Feedburner is one of the biggest RSS Feeds provider to reach your readers be able to read or subscribe your latest news/articles automatically. Go to Feedburner.com and login Click “My Feeds” in the upper-left-hand corner Select your feed from the list Click the “Publicize” tab Click “Email Subscriptions” on the left Make sure “Feedburner” is selected, and click “Activate” In “Subscription Management” you will see some code as: onsubmit=”window.open(‘http://feedburner.google.com/fb/a/mailverify?uri=wordpressyeah/wordpresstheme’, ‘popupwindow’, “wordpressyeah/wordpresstheme” is your uri.

Aug
29
2011

Using wp_pagenavi() with custom queries

The old way (which still works): query_posts( array( ‘tag’ => ‘foo’, ‘paged’ => get_query_var(‘paged’) ) );   while ( have_posts() ) : the_post(); the_title(); // more stuff here endwhile;   wp_pagenavi();   wp_reset_query(); // avoid errors further down the page The new way (better, because it has less side-effects): $my_query = new WP_Query( array( ‘tag’ => ‘foo’, ‘paged’ => get_query_var(‘paged’) ) );   while ( $my_query->have_posts() ) : $my_query->the_post(); the_title(); // more stuff here endwhile; [...]

Jul
30
2011

TinyMCE Advanced WordPress Editor

The default  WYSIWYG editor in WordPress is newbie friendly, easy to use and simple to manage . By default this editor has only few of it’s features enabled . To enable more features of this default editor ,  a webmaster , could hack the source code or instal extra plugins .  One such plugin  is the TinyMCE Advanced ,  which is a superior visual editor that enables the user to edit HTML content in a [...]

Jan
21
2011

How to set post first image as featured image automatically

From wordpress 3.0 version wordpress launched the feature called featured image. Many new wordpress themes are compatible with new wordpress version. So using or choosing the image as featured image for post is another manual work we need to do. Many old wordpress website holder or blogger is having issue with this functionality. What they want is when they create the post they haven’t set the featured image, but they would like the featured image [...]

Jan
18
2011

Cách tạo một blog qua 4 bước đơn giản

how to write a blog

Tạo ra một blog dường như như một công việc khó khăn và bạn có thể không biết bắt đầu từ đâu. Sự thật mà nói, tạo một blog (miễn phí) là việc khá dễ dàng, và bạn có thể làm điều đó mà chưa mất đến  một giờ bằng cách làm theo bốn bước đơn giản sau đây. Bạn còn chờ gì nữa? Tham gia vào thế giới blog hôm nay! Độ khó: Dễ [...]

Pages:123»

Sponsors