Social bookmarking is a method for Internet users to share, organize, search, and manage bookmarks of web resources. Unlike file sharing, the resources themselves aren't shared, merely bookmarks that reference them. With Social Bookmark websites, users can save and categorize a personal collection of bookmarks and share them with others. Your visitors can now bookmark and submit your websites to all their favorite social bookmark services with the ease of a single click.
So how can we encourage more people to share our links? One of the easiest options is to include a set of links at the bottom of your posts which readers can click to automatically vote for your article.

Social Media Process v1.0
In this post, I’ve written the WordPress codes for 45+ of the most popular
social bookmarking and networking sites out there.
Continue reading...

On December 18th, 2009, WordPress Version 2.9, named in honor of magical jazz vocalist Carmen McRae, was released to the public before the year ends. You can upgrade easily from your Dashboard by going to Tools > Upgrade, or you can download from WordPress.org. The WordPress 2.9 requires MySQL 4.1.2 or greater.
You can read the full list of new features, changes, upgrades, and improvements on the WordPress Codex. Following is our list of resources for more significant features/changes from developer’s point of view:
Continue reading...
Wordpress is getting more and more popular each day, nobody can guarantee that your WordPress installation is 100% secure. Securing your WordPress blog is the most important thing that you must do after you have set it up on your server.
Before you read on, you need to know about Checklist to Improve Wordpress Security
- Encrypt your login
- Stop brute force attack
- Use a strong password
- Protect your wp-admin folder
- Remove WordPress version info, Wordpress Error-Messages
- Hide your plugins folder
- Change your login name
- Upgrade to the latest version of WordPress and plugins
- Do a regular security scan
- Backup your wordpress database
- Define user privilege
There are many Wordpress Plugins which help you in securing your Blogs, I will share some tips, tricks and resources which will surely help you to secure and lock down your WordPress site and to fortify it from unwarranted attacks.
Continue reading...
WordPress is being used as a membership site, or site where user registration is allowed. In those cases it is wise for businesses to brand the login page with their logo and other aspects to give it a unique touch that it deserves. Wordpress login page is simple, this is the reason many people want to change the login page as they want. In this article we will be showing you some of Creative Wordpress Custom Login Design that will take you custom your Wordpress Login Pages.

Block, street & building blog
Continue reading...
The concept of aesthetic sophistication of women than men so much, that's their privilege. For women, in my opinion, the design does not require too important to their blogs, what they concern is the color and layout content feminine or not? They do not care much to new technology, design style and new trend ....
Pinky Kupy
Pink Kupy 1.0. A 2 column, fixed width theme, widgets not supported unfortunately. Download Pinky Kupy

Pink Kupy
Continue reading...
Installing too many plugins will make the wordpress blog work slowly and unstable, use code built in your theme will reduce the system resources.

Most recent post and comments
I've known a ton of plugins and widgets that allows me to list recent comments and recent post on my WordPress blog but I'm not using it. Because I've integrated some useful code below then I get results similar to those extensions which I've known.
List most recent comments
<?php
global $wpdb;
$sql = "SELECT DISTINCT ID, post_title, post_password, comment_ID, comment_post_ID, comment_author, comment_date_gmt, comment_approved, comment_type,comment_author_url, SUBSTRING(comment_content,1,30) AS com_excerpt FROM $wpdb->comments LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID = $wpdb->posts.ID) WHERE comment_approved = '1' AND comment_type = '' AND post_password = '' ORDER BY comment_date_gmt DESC LIMIT 10";
$comments = $wpdb->get_results($sql);
$output = $pre_HTML;
$output .= "\n<ul>";
foreach ($comments as $comment) {
$output .= "\n<li>".strip_tags($comment->comment_author) .":" . "<a href=\"" . get_permalink($comment->ID)."#comment-" . $comment->comment_ID . "\" title=\"on ".$comment->post_title . "\">" . strip_tags($comment->com_excerpt)."</a></li>";
}
$output .= "\n</ul>";
$output .= $post_HTML;
echo $output;
?>
Continue reading...