Wordpress Basic Parameter to know
Post Meta
Post metadata is information about a post that is not part of the actual content. This includes information like post date, author, categories and tags, or custom taxonomies.Taxonomy
WordPress taxonomies are used as a way to group posts and custom post types together.Wordpress uses Categories and tags.
$data = get_terms( array('category'));
$data = get_terms( array('tag'));