{"id":4226,"date":"2016-06-01T12:31:11","date_gmt":"2016-06-01T12:31:11","guid":{"rendered":"http:\/\/www.garysieling.com\/blog\/?p=4226"},"modified":"2016-06-01T12:31:11","modified_gmt":"2016-06-01T12:31:11","slug":"wordpress-add-custom-type-custom-fields","status":"publish","type":"post","link":"https:\/\/www.garysieling.com\/blog\/wordpress-add-custom-type-custom-fields\/","title":{"rendered":"WordPress: Add a custom type with custom fields"},"content":{"rendered":"<p>If you&#8217;ve used any system that allows for custom fields \/ custom entities, you may find the WordPress system quite alien (e.g.: compare to SalesForce, Documentum, SharePoint etc).<\/p>\n<p>Like most tools, the WordPress customization model is typically a mix of configuration, code, and plugins, but since you can edit any code, anywhere in the system, you have to be a little careful (there is no notion of &#8220;versioning&#8221; the database, that I can see, for instance, so how to do migrations is an open question). <\/p>\n<p>Typically any piece of code you&#8217;d write yourself (e.g. adding a custom type) can be extracted and made into a plugin. Thus, part of customizing WordPress is a trade-off between deciding what to customize yourself and what to delegate to existing plugins.<\/p>\n<p>For adding a custom type, for instance, it&#8217;s pretty easy to just drop in some code:<\/p>\n<pre lang=\"php\">\n\nadd_action( 'init', 'create_post_type' );\nfunction create_post_type() {\n  register_post_type( 'error_message',\n    array(\n      'labels' => array(\n        'name' => __( 'Errors' ),\n        'singular_name' => __( 'Error' )\n      ),\n      'public' => true,\n      'has_archive' => true,\n    )\n  );\n}\n<\/pre>\n<p>This does start to show where some of the pain is going to come in &#8211; every attribute we add has to have labels for every action, which isn&#8217;t much fun to do.<\/p>\n<p>You can add custom fields as key-value stores, but they are hard to maintain and don&#8217;t support any complex value assistance behaviors.<\/p>\n<p>Consequently, the best thing to do is to install a plugin (&#8220;Advanced Custom Fields&#8221;) that manages this for you.<\/p>\n<p>Here, I&#8217;ve set up a custom field group for a section of my blog (&#8220;error messages from popular javascript libraries&#8221;). In my setup, each custom field is an attribute of an error message:<br \/>\n<img alt='' class='alignnone size-full wp-image-4229' src='http:\/\/172.104.26.128\/wp-content\/uploads\/2016\/05\/img_574ba7abeb532.png' \/><\/p>\n<p>When you set this up, you have a fair amount of configuration options &#8211; you can make it a preset list of values, and make it conditional upon other fields:<br \/>\n<img alt='' class='alignnone size-full wp-image-4280' src='http:\/\/172.104.26.128\/wp-content\/uploads\/2016\/06\/img_574ed4eceb344.png' \/><\/p>\n<p>The fields show up on the &#8220;new post&#8221; screen the way you&#8217;d expect:<br \/>\n<img alt='' class='alignnone size-full wp-image-4284' src='http:\/\/172.104.26.128\/wp-content\/uploads\/2016\/06\/img_574ed566cef18.png' \/><\/p>\n<p>Now that you&#8217;ve done this, you have custom fields. In future posts I&#8217;m going to investigate how to handle migrating changes (as an application grows), moving data from server to server, and other issues involved maintaining such a site.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Understanding the Wordpress model for custom fields<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"footnotes":""},"categories":[12],"tags":[601],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"Understanding the Wordpress model for custom fields\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"gary\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.garysieling.com\/blog\/wordpress-add-custom-type-custom-fields\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Gary Sieling - Software Engineer\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"WordPress: Add a custom type with custom fields - Gary Sieling\" \/>\n\t\t<meta property=\"og:description\" content=\"Understanding the Wordpress model for custom fields\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.garysieling.com\/blog\/wordpress-add-custom-type-custom-fields\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2016-06-01T12:31:11+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2016-06-01T12:31:11+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"WordPress: Add a custom type with custom fields - Gary Sieling\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Understanding the Wordpress model for custom fields\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/wordpress-add-custom-type-custom-fields\\\/#blogposting\",\"name\":\"WordPress: Add a custom type with custom fields - Gary Sieling\",\"headline\":\"WordPress: Add a custom type with custom fields\",\"author\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#organization\"},\"datePublished\":\"2016-06-01T12:31:11+00:00\",\"dateModified\":\"2016-06-01T12:31:11+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/wordpress-add-custom-type-custom-fields\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/wordpress-add-custom-type-custom-fields\\\/#webpage\"},\"articleSection\":\"How-To, wordpress\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/wordpress-add-custom-type-custom-fields\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.garysieling.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/how-to\\\/#listItem\",\"name\":\"How-To\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/how-to\\\/#listItem\",\"position\":2,\"name\":\"How-To\",\"item\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/how-to\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/wordpress-add-custom-type-custom-fields\\\/#listItem\",\"name\":\"WordPress: Add a custom type with custom fields\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/wordpress-add-custom-type-custom-fields\\\/#listItem\",\"position\":3,\"name\":\"WordPress: Add a custom type with custom fields\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/how-to\\\/#listItem\",\"name\":\"How-To\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#organization\",\"name\":\"Gary Sieling\",\"description\":\"Software Engineer\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/\",\"name\":\"gary\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/wordpress-add-custom-type-custom-fields\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0be925276d848ffe98a6a9dc8cf33e67?s=96&d=identicon&r=g\",\"width\":96,\"height\":96,\"caption\":\"gary\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/wordpress-add-custom-type-custom-fields\\\/#webpage\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/wordpress-add-custom-type-custom-fields\\\/\",\"name\":\"WordPress: Add a custom type with custom fields - Gary Sieling\",\"description\":\"Understanding the Wordpress model for custom fields\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/wordpress-add-custom-type-custom-fields\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\"},\"datePublished\":\"2016-06-01T12:31:11+00:00\",\"dateModified\":\"2016-06-01T12:31:11+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/\",\"name\":\"Gary Sieling\",\"description\":\"Software Engineer\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"WordPress: Add a custom type with custom fields - Gary Sieling","description":"Understanding the Wordpress model for custom fields","canonical_url":"https:\/\/www.garysieling.com\/blog\/wordpress-add-custom-type-custom-fields\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.garysieling.com\/blog\/wordpress-add-custom-type-custom-fields\/#blogposting","name":"WordPress: Add a custom type with custom fields - Gary Sieling","headline":"WordPress: Add a custom type with custom fields","author":{"@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author"},"publisher":{"@id":"https:\/\/www.garysieling.com\/blog\/#organization"},"datePublished":"2016-06-01T12:31:11+00:00","dateModified":"2016-06-01T12:31:11+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.garysieling.com\/blog\/wordpress-add-custom-type-custom-fields\/#webpage"},"isPartOf":{"@id":"https:\/\/www.garysieling.com\/blog\/wordpress-add-custom-type-custom-fields\/#webpage"},"articleSection":"How-To, wordpress"},{"@type":"BreadcrumbList","@id":"https:\/\/www.garysieling.com\/blog\/wordpress-add-custom-type-custom-fields\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.garysieling.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/category\/how-to\/#listItem","name":"How-To"}},{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/category\/how-to\/#listItem","position":2,"name":"How-To","item":"https:\/\/www.garysieling.com\/blog\/category\/how-to\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/wordpress-add-custom-type-custom-fields\/#listItem","name":"WordPress: Add a custom type with custom fields"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/wordpress-add-custom-type-custom-fields\/#listItem","position":3,"name":"WordPress: Add a custom type with custom fields","previousItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/category\/how-to\/#listItem","name":"How-To"}}]},{"@type":"Organization","@id":"https:\/\/www.garysieling.com\/blog\/#organization","name":"Gary Sieling","description":"Software Engineer","url":"https:\/\/www.garysieling.com\/blog\/"},{"@type":"Person","@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author","url":"https:\/\/www.garysieling.com\/blog\/author\/gary\/","name":"gary","image":{"@type":"ImageObject","@id":"https:\/\/www.garysieling.com\/blog\/wordpress-add-custom-type-custom-fields\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/0be925276d848ffe98a6a9dc8cf33e67?s=96&d=identicon&r=g","width":96,"height":96,"caption":"gary"}},{"@type":"WebPage","@id":"https:\/\/www.garysieling.com\/blog\/wordpress-add-custom-type-custom-fields\/#webpage","url":"https:\/\/www.garysieling.com\/blog\/wordpress-add-custom-type-custom-fields\/","name":"WordPress: Add a custom type with custom fields - Gary Sieling","description":"Understanding the Wordpress model for custom fields","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.garysieling.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.garysieling.com\/blog\/wordpress-add-custom-type-custom-fields\/#breadcrumblist"},"author":{"@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author"},"creator":{"@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author"},"datePublished":"2016-06-01T12:31:11+00:00","dateModified":"2016-06-01T12:31:11+00:00"},{"@type":"WebSite","@id":"https:\/\/www.garysieling.com\/blog\/#website","url":"https:\/\/www.garysieling.com\/blog\/","name":"Gary Sieling","description":"Software Engineer","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.garysieling.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Gary Sieling - Software Engineer","og:type":"article","og:title":"WordPress: Add a custom type with custom fields - Gary Sieling","og:description":"Understanding the Wordpress model for custom fields","og:url":"https:\/\/www.garysieling.com\/blog\/wordpress-add-custom-type-custom-fields\/","article:published_time":"2016-06-01T12:31:11+00:00","article:modified_time":"2016-06-01T12:31:11+00:00","twitter:card":"summary_large_image","twitter:title":"WordPress: Add a custom type with custom fields - Gary Sieling","twitter:description":"Understanding the Wordpress model for custom fields"},"aioseo_meta_data":{"post_id":"4226","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2023-02-04 16:55:39","updated":"2026-07-06 01:57:51","ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.garysieling.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.garysieling.com\/blog\/category\/how-to\/\" title=\"How-To\">How-To<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tWordPress: Add a custom type with custom fields\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.garysieling.com\/blog"},{"label":"How-To","link":"https:\/\/www.garysieling.com\/blog\/category\/how-to\/"},{"label":"WordPress: Add a custom type with custom fields","link":"https:\/\/www.garysieling.com\/blog\/wordpress-add-custom-type-custom-fields\/"}],"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts\/4226"}],"collection":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/comments?post=4226"}],"version-history":[{"count":0,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts\/4226\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/media?parent=4226"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/categories?post=4226"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/tags?post=4226"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}