Groupon.com Clone – Ask For Quote

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 …

Read More

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 …

Read More

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 …

Read More

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 …

Read More

Introduction to WordPress Database: wp_postmeta

Introduction to WordPress Database: wp_postmeta Current Version : 2.9.2 Just like wp_options and wp_usermeta, wp_postmeta is used to save post related data. These data are generally called custom fields. One can add custom field from post editor, as shown below: For example, I have the inserted version in each post using the custom fields. The …

Read More

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 …

Read More

Introduction to WordPress Database: wp_usermeta

Introduction to WordPress Database: wp_usermeta Current Version: 2.9.2 In general, wordpress saves many user related data. It is difficult to save them in one column in wp_users. Hence WordPress saves these data in wp_usermeta table. The structure of this table is mentioned below: Field Type Null Key Default Extra umeta_id bigint(20) unsigned PRI NULL auto_increment …

Read More

Introduction to WordPress Database: wp_options

Introduction to WordPress Database: wp_options Current Version: 2.9.2 Wp_options tables is used to store wordpress’s default settings, standard options etc. The structure of the table is as follows: Field Type NULL Key Default Extra option_id bigint(20) unsigned PRI Pt1 NULL auto_increment blog_id int(11) PRI Pt2 0 option_name varchar(64) PRI Pt3 & IND option_value Longtext Autoload …

Read More

New Features in WordPress 2.9: A brief Introduction

Image Editor In WordPress 2.9 whenever you upload an image, you can edit it using the edit image option. The image editor contains several useful functions such as image cropping, image rotation and image flipping. In addition, you can also undo and redo your actions. Post Trash Can WordPress 2.9 provides a very useful feature, …

Read More
Page 2 of 5«12345»