WordPress is a free and open-source content management system (CMS) based on PHP and MySQL . Wordpress Tables: wp_commentmeta : This table contains meta information about comments posted on a WordPress website. This table has four fields meta_id, comment_id, meta_key, and meta_value. Each meta_id is related to a comment_id. One example of comment meta information stored is the status of comment (approved, pending, trash, etc). wp_comments : As the name suggests this table contains your WordPress comments. It contains comment author name, url, email, comment, etc. wp_links : To manage blogrolls create by earlier versions of WordPress or the Link Manager plugin. wp_options : This table contains most of your WordPress site wide settings such as: site url, admin email, default category, posts per page, time format, and much much more. The options table is also used by numerous WordPress plugins to st...