{"id":8651,"date":"2015-12-09T16:15:48","date_gmt":"2015-12-09T14:15:48","guid":{"rendered":"http:\/\/www.webcodegeeks.com\/?p=8651"},"modified":"2015-11-24T00:53:08","modified_gmt":"2015-11-23T22:53:08","slug":"wordpress-get_post_meta-example","status":"publish","type":"post","link":"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/","title":{"rendered":"WordPress get_post_meta Example"},"content":{"rendered":"<p>Let&#8217;s take it as if you&#8217;re writing a post in your WordPress website. Being the nice guy he is, WordPress would actually facilitate this for you and why not add some little perks such as you including your favorite song for the moment, or even your mood into your post. This is done through metadata. How exactly? Look below!<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<\/p>\n<h2>get_post_meta()<\/h2>\n<p>Metadata is handled through the usage of <strong>key-value<\/strong> pairs. You can store the name of the metadata in the <em>key<\/em> part of this pair, and store the information which will appear in the metadata list of the post with which it&#8217;s related in <em>value<\/em>.<\/p>\n<p>To get a post&#8217;s metadata we use the WordPress function <code>get_post_meta<\/code>. It&#8217;s syntax goes like below:<\/p>\n<pre class=\"brush:php\">\r\nget_post_meta ( int $post_id, string $key = '', bool $single = false )\r\n<\/pre>\n<p>As you see, this function takes three arguments. The first one is <code>$post_id<\/code>, which is what you will identify the post whose metadata you are looking for with. This parameter is obligatory and must be an integer.<\/p>\n<p>Next up is <code>$key<\/code>, which is an optional parameter of the format string that represents the meta key to be retrieved. If you don&#8217;t specify this, it will return data for all the keys by default. The last parameter is <code>$single<\/code>, a boolean value that shows whether a single value is to be returned or not. This parameter is also optional. By default it will take the value <code>FALSE<\/code>.<\/p>\n<h2>Current post&#8217;s meta<\/h2>\n<p>You can use this function to perform a number of actions on the metadata of the current post, such as, but not limited to, getting the meta for all the keys, for a single key, or even getting the first value of the a key. Take a look at the code below:<\/p>\n<pre class=\"brush:php\">\r\n&lt;?php $meta = get_post_meta( get_the_ID() ); ?&gt;\r\n\r\n&lt;?php $key_1_value = get_post_meta( get_the_ID(), 'key_1' ); ?&gt;\r\n\r\n&lt;?php $key_1_value = get_post_meta( get_the_ID(), 'key_1', true ); ?&gt;\r\n<\/pre>\n<p>The first line of code is how we get the meta for all the keys, which is getting the id of a specific post, and not specifying either of the two optional parameters.<\/p>\n<p>Not very differently we get the meta for a single key, only this time we specify the key and leave the rest as it is.<\/p>\n<p>If we only want the first value for this key we specified, we set the last parameter to <code>TRUE<\/code> and all is well. Easy, right?<\/p>\n<h2>Custom Fields Meta<\/h2>\n<p>What is done differently if you have added <a href=\"https:\/\/codex.wordpress.org\/Custom_Fields\" target=\"_blank\">custom fields<\/a> to your post? Let&#8217;s take the example where we have to get a thumbnail&#8217;s URL, which is stored in the custom field named <code>thumbnailurl<\/code>. The code would go like below:<\/p>\n<pre class=\"brush:php\">\r\n&lt;?php if ( get_post_meta( get_the_ID(), 'thumbnailurl', true ) ) : ?&gt;\r\n      &lt;a href=\"&lt;?php the_permalink() ?&gt;\" rel=\"bookmark\"&gt;\r\n        &lt;img class=\"thumbnailurl\" \r\n        src=\"&lt;?php echo esc_url( get_post_meta( get_the_ID(), 'thumbnailurl', true ) ); ?&gt;\" \r\n        alt=\" &lt;?php the_title_attribute(); ?&gt;\" \/&gt;\r\n      &lt;\/a&gt;\r\n&lt;?php endif; ?&gt;\r\n<\/pre>\n<h2>get_post_meta() hacks<\/h2>\n<p><strong>No meta field is found<\/strong><\/p>\n<p>In case you are searching for a given <code>$key<\/code> in a specific post, and that is not found, then you can get a return value in two forms, depending on what the set value of the parameter <code>$single<\/code> is. If this parameter is set to <code>FALSE<\/code> then you will get an empty array, otherwise, you will be given an empty string.<\/p>\n<p>While both may be equally disheartening, the way the return value is presented to you may change how you approach the rest of your code. However, you can add the two lines of code below and keep working the same regardless:<\/p>\n<pre class=\"brush:php\">\r\nif( ! get_post_meta( '1', 'non-existing_meta', true ) ) {}\r\nif( ! get_post_meta( '1', 'non-existing_meta', false ) ) {}\r\n<\/pre>\n<p>Both lines will be run in case we don&#8217;t find metadata for a given post.<\/p>\n<p><strong>Meta value is an empty string<\/strong><\/p>\n<p>If by chance you have stored an empty string into your meta value, then you wouldn&#8217;t be able to retrieve this by using <code>get_post_meta<\/code>. Instead you can get the correct answer by using <code>get_post_custom_keys()<\/code>. You can do this like below:<\/p>\n<pre class=\"brush:php\">\r\nif( ! in_array( 'given_key', get_post_custom_keys( '1' ) ) ) {}\r\n<\/pre>\n<p>This function would correctly find out if the meta has a value that translates to false, such as empty strings or <code>FALSE<\/code> as a boolean value.<\/p>\n<h2>get_metadata()<\/h2>\n<p>If you want to get the metadata of a certain object this time, and not a post, then the function you must use is <code>get_metadata()<\/code>. It&#8217;s syntax goes like below:<\/p>\n<pre class=\"brush:php\">\r\nget_metadata($meta_type, $object_id, $meta_key, $single)\r\n<\/pre>\n<p>Two of this functions&#8217; parameters are obligatory, that being <code>$meta_type<\/code> and <code>$object_id<\/code>. The first one is the type of object the metadata is for, therefore it&#8217;s format is a string. The other one shows the ID of this object, making it to be an integer.<\/p>\n<p>The other two optional parameters are <code>$meta_key<\/code>, which shows the <code>$key<\/code> of the required metadata and retrieves metadata for all keys if left unspecified, and <code>$single<\/code> which is a boolean value that when set to true return only the first value for the specified metadata.<\/p>\n<h2>Download the source code <\/h2>\n<p>This was an example of <code>get_post_meta()<\/code> in WordPress.<\/p>\n<p>Download the source code for this tutorial: <\/p>\n<div class=\"download\"><strong>Download<\/strong><br \/>You can download the full source code of this example here : <strong><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2015\/11\/get_post_meta.zip\">get_post_meta<\/a><\/strong><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Let&#8217;s take it as if you&#8217;re writing a post in your WordPress website. Being the nice guy he is, WordPress would actually facilitate this for you and why not add some little perks such as you including your favorite song for the moment, or even your mood into your post. This is done through metadata. &hellip;<\/p>\n","protected":false},"author":25,"featured_media":932,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[20],"tags":[],"class_list":["post-8651","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Wordpress get_post_meta Example - Web Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"Let&#039;s take it as if you&#039;re writing a post in your WordPress website. Being the nice guy he is, WordPress would actually facilitate this for you and why\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Wordpress get_post_meta Example - Web Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"Let&#039;s take it as if you&#039;re writing a post in your WordPress website. Being the nice guy he is, WordPress would actually facilitate this for you and why\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webcodegeeks\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/era.balliu.7\" \/>\n<meta property=\"article:published_time\" content=\"2015-12-09T14:15:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/wordpress-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Era Balliu\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@BalliuEra\" \/>\n<meta name=\"twitter:site\" content=\"@webcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Era Balliu\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/\"},\"author\":{\"name\":\"Era Balliu\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/c27ecf40c810e6396ba93ffb829c7b0e\"},\"headline\":\"WordPress get_post_meta Example\",\"datePublished\":\"2015-12-09T14:15:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/\"},\"wordCount\":766,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/wordpress-logo.jpg\",\"articleSection\":[\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/\",\"name\":\"Wordpress get_post_meta Example - Web Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/wordpress-logo.jpg\",\"datePublished\":\"2015-12-09T14:15:48+00:00\",\"description\":\"Let's take it as if you're writing a post in your WordPress website. Being the nice guy he is, WordPress would actually facilitate this for you and why\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/#primaryimage\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/wordpress-logo.jpg\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/wordpress-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webcodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"WordPress\",\"item\":\"https:\/\/www.webcodegeeks.com\/category\/wordpress\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"WordPress get_post_meta Example\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\",\"url\":\"https:\/\/www.webcodegeeks.com\/\",\"name\":\"Web Code Geeks\",\"description\":\"Web Developers Resource Center\",\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.webcodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/www.webcodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webcodegeeks\",\"https:\/\/x.com\/webcodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/c27ecf40c810e6396ba93ffb829c7b0e\",\"name\":\"Era Balliu\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f6adddf7eada210f682608fea9d8159441369ec622998a5851a447e0a2bfa3f3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f6adddf7eada210f682608fea9d8159441369ec622998a5851a447e0a2bfa3f3?s=96&d=mm&r=g\",\"caption\":\"Era Balliu\"},\"description\":\"Era is a Telecommunications Engineering student, with a great passion for new technologies. Up until now she has been coding with HTML\/CSS, Bootstrap and other front-end coding languages and frameworks, and her recent love is Angular JS.\",\"sameAs\":[\"http:\/\/www.webcodegeeks.com\/\",\"https:\/\/www.facebook.com\/era.balliu.7\",\"https:\/\/www.instagram.com\/eraballiu\/\",\"https:\/\/www.linkedin.com\/in\/eraballiu\",\"https:\/\/www.pinterest.com\/001r2gw0jt0ln6d\/\",\"https:\/\/x.com\/BalliuEra\",\"https:\/\/www.youtube.com\/c\/eraballiu\"],\"url\":\"https:\/\/www.webcodegeeks.com\/author\/era-balliu\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Wordpress get_post_meta Example - Web Code Geeks - 2026","description":"Let's take it as if you're writing a post in your WordPress website. Being the nice guy he is, WordPress would actually facilitate this for you and why","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:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/","og_locale":"en_US","og_type":"article","og_title":"Wordpress get_post_meta Example - Web Code Geeks - 2026","og_description":"Let's take it as if you're writing a post in your WordPress website. Being the nice guy he is, WordPress would actually facilitate this for you and why","og_url":"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/","og_site_name":"Web Code Geeks","article_publisher":"https:\/\/www.facebook.com\/webcodegeeks","article_author":"https:\/\/www.facebook.com\/era.balliu.7","article_published_time":"2015-12-09T14:15:48+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/wordpress-logo.jpg","type":"image\/jpeg"}],"author":"Era Balliu","twitter_card":"summary_large_image","twitter_creator":"@BalliuEra","twitter_site":"@webcodegeeks","twitter_misc":{"Written by":"Era Balliu","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/#article","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/"},"author":{"name":"Era Balliu","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/c27ecf40c810e6396ba93ffb829c7b0e"},"headline":"WordPress get_post_meta Example","datePublished":"2015-12-09T14:15:48+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/"},"wordCount":766,"commentCount":0,"publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/wordpress-logo.jpg","articleSection":["WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/","url":"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/","name":"Wordpress get_post_meta Example - Web Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/#primaryimage"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/wordpress-logo.jpg","datePublished":"2015-12-09T14:15:48+00:00","description":"Let's take it as if you're writing a post in your WordPress website. Being the nice guy he is, WordPress would actually facilitate this for you and why","breadcrumb":{"@id":"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/#primaryimage","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/wordpress-logo.jpg","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/wordpress-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.webcodegeeks.com\/wordpress\/wordpress-get_post_meta-example\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webcodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"WordPress","item":"https:\/\/www.webcodegeeks.com\/category\/wordpress\/"},{"@type":"ListItem","position":3,"name":"WordPress get_post_meta Example"}]},{"@type":"WebSite","@id":"https:\/\/www.webcodegeeks.com\/#website","url":"https:\/\/www.webcodegeeks.com\/","name":"Web Code Geeks","description":"Web Developers Resource Center","publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webcodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webcodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.webcodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webcodegeeks","https:\/\/x.com\/webcodegeeks"]},{"@type":"Person","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/c27ecf40c810e6396ba93ffb829c7b0e","name":"Era Balliu","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f6adddf7eada210f682608fea9d8159441369ec622998a5851a447e0a2bfa3f3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f6adddf7eada210f682608fea9d8159441369ec622998a5851a447e0a2bfa3f3?s=96&d=mm&r=g","caption":"Era Balliu"},"description":"Era is a Telecommunications Engineering student, with a great passion for new technologies. Up until now she has been coding with HTML\/CSS, Bootstrap and other front-end coding languages and frameworks, and her recent love is Angular JS.","sameAs":["http:\/\/www.webcodegeeks.com\/","https:\/\/www.facebook.com\/era.balliu.7","https:\/\/www.instagram.com\/eraballiu\/","https:\/\/www.linkedin.com\/in\/eraballiu","https:\/\/www.pinterest.com\/001r2gw0jt0ln6d\/","https:\/\/x.com\/BalliuEra","https:\/\/www.youtube.com\/c\/eraballiu"],"url":"https:\/\/www.webcodegeeks.com\/author\/era-balliu\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/8651","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/users\/25"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/comments?post=8651"}],"version-history":[{"count":0,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/8651\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media\/932"}],"wp:attachment":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media?parent=8651"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/categories?post=8651"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/tags?post=8651"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}