{"id":367,"date":"2015-04-15T19:15:34","date_gmt":"2015-04-15T14:15:34","guid":{"rendered":"http:\/\/128.199.176.160\/?p=367"},"modified":"2026-03-02T15:55:32","modified_gmt":"2026-03-02T10:55:32","slug":"how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin","status":"publish","type":"post","link":"https:\/\/wpbrigade.com\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\/","title":{"rendered":"How To Add a Custom Field via WordPress plugin?"},"content":{"rendered":"\n<p>Sometimes we need to add custom data for our posts and pages, other than title and content, especially when one becomes comfortable with WordPress, there is an urge to experiment with exciting features using WordPress custom fields.&nbsp;Suppose you are using <a title=\"Custom Post Types\" href=\"https:\/\/wpbrigade.com\/how-to-create-custom-post-types-in-wordpress-admin\/\" target=\"_blank\" rel=\"dofollow noopener\">Custom Post Types<\/a> for your bookstore and want to save the Book price as well. You have added a title and description, but for the price, you will add a custom field. Today, we are going to gain an understanding of <strong>how you can add custom fields via WordPress plugins<\/strong>. In modern WordPress development, these kinds of functional stuff should be done via plugins instead of coding in WordPress themes.<\/p>\n\n\n\n<p><em>Before moving forward <strong><a href=\"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/03\/custom_field.zip\">download the Custom Field Plugin ZIP file<\/a><\/strong><\/em>. <em>Please open the class file &#8220;class_custom_field.php&#8221;<\/em>. Please open the class file <strong>&#8220;class_custom_field.php&#8221;<\/strong>.<\/p>\n\n\n\n<p>I will explain every code snippet step by step.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">function init_customField() {\nnew customField();\n}<\/pre>\n\n\n\n<p>The above function is simply getting an instance of the class and returning it.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">if ( is_admin() ) {\nadd_action( 'load-post.php', 'init_customField' );\nadd_action( 'load-post-new.php', 'init_customField' );\n}<\/pre>\n\n\n\n<p>This code snippet is saying that when a post is to be edited or a new post is to be made get an instance of <strong>&#8220;customField&#8221;<\/strong> class and getting an instance is of course means to initialize and render the text field in the posting page.<\/p>\n\n\n\n<p><strong>&#8220;load-post&#8221;<\/strong> and<strong> &#8220;load-post-new&#8221;<\/strong> are two new hooks.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">public function __construct() {\nadd_action( 'add_meta_boxes', array( $this, 'add_meta_box' ) );\nadd_action( 'save_post', array( $this, 'save' ) );\n}<\/pre>\n\n\n\n<p>Class constructor is adding functions to the hooks for rendering and saving the data.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">public function add_meta_box( $post_type ) {\n\n$post_types = array('post', 'page'); \/\/limit meta box to certain post types\nif ( in_array( $post_type, $post_types )) {\nadd_meta_box(\n'my_meta_box_name'\n,__( 'My Meta Box Headline', 'myplugin_textdomain' )\n,array( $this, 'render_meta_box_content' )\n,$post_type\n);\n}\n}<\/pre>\n\n\n\n<p>The<strong> &#8220;add_meta_box&#8221;<\/strong> is in fact the responsibility to render the text field. The<strong> first argument<\/strong> is setting &#8220;<strong>id<\/strong>&#8220;, the<strong> second argument<\/strong> is setting title, the <strong>third argument<\/strong> is giving the definition that how will it be and the <strong>fourth argument<\/strong> is setting the screen is it a &#8220;<strong>page<\/strong>&#8221; or a &#8220;<strong>post<\/strong>&#8221; where this custom field will be rendered on.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">public function save( $post_id ) {\n\/\/code goes here\n}<\/pre>\n\n\n\n<p>Inside the<strong>&#8220;save&#8221;<\/strong> function first, we are checking whether <strong>&#8220;nonce&#8221;<\/strong> is set. <strong>&#8220;nonce&#8221;<\/strong> is put in the form for security reasons. <em>You can read about it from<\/em> <em><strong><a href=\"https:\/\/wpbrigade.com\/what-is-wordpress-nonce-and-how-it-works\/\">WordPress Nonce and how it works<\/a><\/strong><\/em>. Then we are verifying whether it is a valid &#8220;nonce&#8221;. Then simply checking whether the current user is authorized to perform this action. Then we are sanitizing the data and saving or updating the data using <strong>&#8220;update_post_meta&#8221;<\/strong> giving a key. Because with this key we will later retrieve our data.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">public function render_meta_box_content( $post ) {\n\/\/code goes here\n}<\/pre>\n\n\n\n<p>Inside <strong>&#8220;render_meta_box_content&#8221;<\/strong> we are generating <strong>&#8220;nonce&#8221;<\/strong>. Then getting the data if it was set using &#8220;<strong>get_post_meta<\/strong>&#8221; function and putting this value in the text field and rendering the text field.<\/p>\n\n\n\n<p>And all done! Adding custom fields to WordPress is like doing some extra coding and in result you get the specific features for a particular post that may need some extra informational data.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Sometimes we need to add custom data for our posts and pages, other than title and content, especially when one becomes comfortable with WordPress, there is an urge to experiment with exciting features using WordPress custom fields.&nbsp;Suppose you are using Custom Post Types for your bookstore and want to save the Book price as well. [&hellip;]<\/p>\n","protected":false},"author":9268,"featured_media":1505,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_analytify_skip_tracking":false,"footnotes":""},"categories":[53,47],"tags":[51,613,52,23],"class_list":["post-367","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-how-to","category-tips-and-tricks","tag-custom-fields","tag-how-to-add-a-custom-field-via-wordpress-plugin","tag-tips-tricks","tag-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How To Add a Custom Field in WordPress Admin Post Page?<\/title>\n<meta name=\"description\" content=\"Sometimes we need to add custom data for our posts and pages other than title and content. This plugin will add a custom field in your post page and process\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/wpbrigade.com\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Add a Custom Field via WordPress plugin?\" \/>\n<meta property=\"og:description\" content=\"Sometimes we need to add custom data for our posts and pages other than title and content. This plugin will add a custom field in your post page and process\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wpbrigade.com\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\/\" \/>\n<meta property=\"og:site_name\" content=\"WPBrigade\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/WPBrigade\" \/>\n<meta property=\"article:published_time\" content=\"2015-04-15T14:15:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-02T10:55:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/customfieldlogo1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"400\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Editorial Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@wpbrigade\" \/>\n<meta name=\"twitter:site\" content=\"@wpbrigade\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Editorial Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\\\/\"},\"author\":{\"name\":\"Editorial Team\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#\\\/schema\\\/person\\\/2dea64860327e163e768333724338de6\"},\"headline\":\"How To Add a Custom Field via WordPress plugin?\",\"datePublished\":\"2015-04-15T14:15:34+00:00\",\"dateModified\":\"2026-03-02T10:55:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\\\/\"},\"wordCount\":453,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wpbrigade.com\\\/wp-content\\\/uploads\\\/2015\\\/04\\\/customfieldlogo1.jpg\",\"keywords\":[\"Custom Fields\",\"How To Add a Custom Field via WordPress plugin\",\"Tips &amp; tricks\",\"WordPress\"],\"articleSection\":[\"How-to\",\"Tips and Tricks\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/wpbrigade.com\\\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\\\/\",\"url\":\"https:\\\/\\\/wpbrigade.com\\\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\\\/\",\"name\":\"How To Add a Custom Field in WordPress Admin Post Page?\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wpbrigade.com\\\/wp-content\\\/uploads\\\/2015\\\/04\\\/customfieldlogo1.jpg\",\"datePublished\":\"2015-04-15T14:15:34+00:00\",\"dateModified\":\"2026-03-02T10:55:32+00:00\",\"description\":\"Sometimes we need to add custom data for our posts and pages other than title and content. This plugin will add a custom field in your post page and process\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/wpbrigade.com\\\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\\\/#primaryimage\",\"url\":\"https:\\\/\\\/wpbrigade.com\\\/wp-content\\\/uploads\\\/2015\\\/04\\\/customfieldlogo1.jpg\",\"contentUrl\":\"https:\\\/\\\/wpbrigade.com\\\/wp-content\\\/uploads\\\/2015\\\/04\\\/customfieldlogo1.jpg\",\"width\":800,\"height\":400,\"caption\":\"How To Add a Custom Field via WordPress plugin\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/wpbrigade.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Add a Custom Field via WordPress plugin?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#website\",\"url\":\"https:\\\/\\\/wpbrigade.com\\\/\",\"name\":\"WPBrigade\",\"description\":\"WordPress Development Agency\",\"publisher\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/wpbrigade.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#organization\",\"name\":\"WPBrigade\",\"url\":\"https:\\\/\\\/wpbrigade.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/wpbrigade.com\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/Screen-Shot-2021-07-02-at-12.42.14-AM.png\",\"contentUrl\":\"https:\\\/\\\/wpbrigade.com\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/Screen-Shot-2021-07-02-at-12.42.14-AM.png\",\"width\":271,\"height\":63,\"caption\":\"WPBrigade\"},\"image\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/facebook.com\\\/WPBrigade\",\"https:\\\/\\\/x.com\\\/wpbrigade\",\"https:\\\/\\\/www.instagram.com\\\/wpbrigade.agency\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/wpbrigade\",\"https:\\\/\\\/www.youtube.com\\\/c\\\/Wpbrigade\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#\\\/schema\\\/person\\\/2dea64860327e163e768333724338de6\",\"name\":\"Editorial Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1bba47142d1af61a55ed7e262cdf830010cbef95f98003b6526c9b1e6a8e4f32?s=96&d=retro&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1bba47142d1af61a55ed7e262cdf830010cbef95f98003b6526c9b1e6a8e4f32?s=96&d=retro&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1bba47142d1af61a55ed7e262cdf830010cbef95f98003b6526c9b1e6a8e4f32?s=96&d=retro&r=g\",\"caption\":\"Editorial Team\"},\"sameAs\":[\"https:\\\/\\\/wpbrigade.com\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How To Add a Custom Field in WordPress Admin Post Page?","description":"Sometimes we need to add custom data for our posts and pages other than title and content. This plugin will add a custom field in your post page and process","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/wpbrigade.com\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\/","og_locale":"en_US","og_type":"article","og_title":"How To Add a Custom Field via WordPress plugin?","og_description":"Sometimes we need to add custom data for our posts and pages other than title and content. This plugin will add a custom field in your post page and process","og_url":"https:\/\/wpbrigade.com\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\/","og_site_name":"WPBrigade","article_publisher":"https:\/\/facebook.com\/WPBrigade","article_published_time":"2015-04-15T14:15:34+00:00","article_modified_time":"2026-03-02T10:55:32+00:00","og_image":[{"width":800,"height":400,"url":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/customfieldlogo1.jpg","type":"image\/jpeg"}],"author":"Editorial Team","twitter_card":"summary_large_image","twitter_creator":"@wpbrigade","twitter_site":"@wpbrigade","twitter_misc":{"Written by":"Editorial Team","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/wpbrigade.com\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\/#article","isPartOf":{"@id":"https:\/\/wpbrigade.com\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\/"},"author":{"name":"Editorial Team","@id":"https:\/\/wpbrigade.com\/#\/schema\/person\/2dea64860327e163e768333724338de6"},"headline":"How To Add a Custom Field via WordPress plugin?","datePublished":"2015-04-15T14:15:34+00:00","dateModified":"2026-03-02T10:55:32+00:00","mainEntityOfPage":{"@id":"https:\/\/wpbrigade.com\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\/"},"wordCount":453,"commentCount":0,"publisher":{"@id":"https:\/\/wpbrigade.com\/#organization"},"image":{"@id":"https:\/\/wpbrigade.com\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\/#primaryimage"},"thumbnailUrl":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/customfieldlogo1.jpg","keywords":["Custom Fields","How To Add a Custom Field via WordPress plugin","Tips &amp; tricks","WordPress"],"articleSection":["How-to","Tips and Tricks"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/wpbrigade.com\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/wpbrigade.com\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\/","url":"https:\/\/wpbrigade.com\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\/","name":"How To Add a Custom Field in WordPress Admin Post Page?","isPartOf":{"@id":"https:\/\/wpbrigade.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wpbrigade.com\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\/#primaryimage"},"image":{"@id":"https:\/\/wpbrigade.com\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\/#primaryimage"},"thumbnailUrl":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/customfieldlogo1.jpg","datePublished":"2015-04-15T14:15:34+00:00","dateModified":"2026-03-02T10:55:32+00:00","description":"Sometimes we need to add custom data for our posts and pages other than title and content. This plugin will add a custom field in your post page and process","breadcrumb":{"@id":"https:\/\/wpbrigade.com\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wpbrigade.com\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wpbrigade.com\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\/#primaryimage","url":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/customfieldlogo1.jpg","contentUrl":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/customfieldlogo1.jpg","width":800,"height":400,"caption":"How To Add a Custom Field via WordPress plugin"},{"@type":"BreadcrumbList","@id":"https:\/\/wpbrigade.com\/how-to-add-a-custom-field-in-wordpress-via-wordpress-plugin\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wpbrigade.com\/"},{"@type":"ListItem","position":2,"name":"How To Add a Custom Field via WordPress plugin?"}]},{"@type":"WebSite","@id":"https:\/\/wpbrigade.com\/#website","url":"https:\/\/wpbrigade.com\/","name":"WPBrigade","description":"WordPress Development Agency","publisher":{"@id":"https:\/\/wpbrigade.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wpbrigade.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/wpbrigade.com\/#organization","name":"WPBrigade","url":"https:\/\/wpbrigade.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wpbrigade.com\/#\/schema\/logo\/image\/","url":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2021\/07\/Screen-Shot-2021-07-02-at-12.42.14-AM.png","contentUrl":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2021\/07\/Screen-Shot-2021-07-02-at-12.42.14-AM.png","width":271,"height":63,"caption":"WPBrigade"},"image":{"@id":"https:\/\/wpbrigade.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/facebook.com\/WPBrigade","https:\/\/x.com\/wpbrigade","https:\/\/www.instagram.com\/wpbrigade.agency\/","https:\/\/www.linkedin.com\/company\/wpbrigade","https:\/\/www.youtube.com\/c\/Wpbrigade"]},{"@type":"Person","@id":"https:\/\/wpbrigade.com\/#\/schema\/person\/2dea64860327e163e768333724338de6","name":"Editorial Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1bba47142d1af61a55ed7e262cdf830010cbef95f98003b6526c9b1e6a8e4f32?s=96&d=retro&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1bba47142d1af61a55ed7e262cdf830010cbef95f98003b6526c9b1e6a8e4f32?s=96&d=retro&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1bba47142d1af61a55ed7e262cdf830010cbef95f98003b6526c9b1e6a8e4f32?s=96&d=retro&r=g","caption":"Editorial Team"},"sameAs":["https:\/\/wpbrigade.com\/"]}]}},"_links":{"self":[{"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/posts\/367","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/users\/9268"}],"replies":[{"embeddable":true,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/comments?post=367"}],"version-history":[{"count":6,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/posts\/367\/revisions"}],"predecessor-version":[{"id":319136,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/posts\/367\/revisions\/319136"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/media\/1505"}],"wp:attachment":[{"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/media?parent=367"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/categories?post=367"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/tags?post=367"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}