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.
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; [...]
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 [...]
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 [...]
18
2011
Cách tạo một blog qua 4 bước đơn giản
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ễ [...]
Sponsors
Recent Posts
- Best Practices for Speeding Up Your Web Site
- Get List Site of Search Results Google with PHP
- How to get URI of feedburner
- LINUX CENTOS USEFUL COMMANDS FOR DUMMIES
- How to run php scripts using cronjob in linux – centos
- Fix Timeout Issues in CURL, PHP, and Apache
- Installing Memcached for PHP on 8.04 and newer
- Quy tắc viết htaccess trong PHP
Tag Cloud
Recent Comments
- Albert on Sử dụng các thuộc tính CSS3 cho IE với PIE
- Christian Louboutin Men Shoes on position: fixed in IE
- Boby Banh on 11 bài học để kiếm đựoc $100 đầu tiên từ việc viết Blog
- xu ly anh on 11 bài học để kiếm đựoc $100 đầu tiên từ việc viết Blog
- day photoshop tai nha * on 11 bài học để kiếm đựoc $100 đầu tiên từ việc viết Blog
- Electrical on Cấu hình domain ảo ở localhost
- jordan retro 11 on Cấu hình domain ảo ở localhost
- Carlos Parriott on A Modular Directory Structure Quickstart: Create Directory Structure
An article by admin
