Groupon has taken the Internet world by storm. Why not? The concept is very simple, each day all the subscribers are emailed a single fantastic deal. It could be deep discounts on food, entertainment, places to stay or things to buy. Since Groupon.Com launched, it has been featured on just about every major media channel …
WordPress India: An innovative Hindi Version of WordPress
WordPress India: An innovative Hindi Version of WordPress WordPressidnia.com, a hindi localize of wordpress, is a software made from wordpress which allows you to write your thoughts in hindi very easily. This software is developed by outshinesolutions.com. Whet they say: “Typing in Hindi is always a problem for Indians. What if you could type “Kaise …
Introduction to WordPress Database: wp_comments
Introduction to WordPress Database: wp_comments Current Version : 2.9.2 Comments made by users on posts, pages or attachments are saved in this table by wordpress. To insert a comment manually, one can use wp_insert_comment function. The argument is an array, with information related to the comment. Check wp_insert_comment for more details. The structure of the …
Introduction to WordPress Database: wp_users
Introduction to WordPress Database: wp_users Current Version : 2.9.2 WordPress saves the user details in wp_users table. All the major details like user id, user_login, email address, password (In MD5) are saved in this table. Below mentioned is the structure of this table: Field Type Null Key Default Extra ID bigint(20) unsigned PRI NULL auto_increment …
Introduction to WordPress Database: wp_commentmeta
Introduction to WordPress Database: wp_commentmeta Current Version: 2.9.2 Each comment features information called the meta data and it is stored in the wp_commentmeta Just like wp_postmeta, we can store comment related information in this table. There is a very interesting article on this by soapboxdave: http://www.soapboxdave.com/2010/02/using-wordpress-comment-meta/ We can use add_comment_meta function to add contents to …