{"id":27070,"date":"2018-11-20T15:04:10","date_gmt":"2018-11-20T15:04:10","guid":{"rendered":"https:\/\/www.awardspace.com\/?page_id=27070"},"modified":"2024-02-28T07:26:47","modified_gmt":"2024-02-28T07:26:47","slug":"how-to-create-a-table-in-wordpress-without-plugin","status":"publish","type":"post","link":"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/","title":{"rendered":"How to Create a Table in WordPress Without Plugin"},"content":{"rendered":"<p>One of the best features of WordPress is its versatility. The abilities presented by the CMS to every one of its users. All of that functionality is at the distance of plugin installation.<\/p>\n<p>Still,\u00a0 <a href=\"\/wordpress-tutorials\/add-plugin-wordpress\/\">installing a plugin<\/a> is not the only way to use the vast number of options that WordPress has. At one time or another, you&#8217;ll find how much better it is to learn a few code lines to achieve what you want the right way. Of course, you can add a\u00a0plugin to your WordPress website, but not all plugins are updated regularly, and thus, they are making your site vulnerable.<\/p>\n<p>Especially when looking for an answer to a question\u00a0as simple as how to create a table in WordPress without using a plugin, you can write a few lines of HTML.<\/p>\n<p>I know, that if you have never used HTML probably even the abbreviation itself\u00a0seems scary. But it&#8217;s not.<\/p>\n<p>&nbsp;<\/p>\n<h2>How to Write HTML in WordPress<\/h2>\n<p>WordPress is created to be simple and understandable for all of its users. Thus, the text editor you&#8217;ll use when creating posts is the so-called <strong>WYSIWYG<\/strong>. In other words &#8211; What You See is What You Get.<\/p>\n<p>Unlike the raw HTML where each paragraph has its tag (more often than not this tag is &lt;p&gt;), in the WYSIWYG you write the text, <a href=\"\/wordpress-tutorials\/add-images-media-wordpress-posts\/\">add media<\/a>, and all in all, you don&#8217;t care about what is it that makes the\u00a0posts look so beautiful.<\/p>\n<p>Well, let&#8217;s find out where to find the code that makes all the magic possible.<\/p>\n<p>When you are about to create a post or a page(it doesn&#8217;t matter which one), here is what you should expect to see:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-27113 alignnone\" src=\"\/wp-content\/uploads\/2018\/11\/Post-creation-WordPress-300x127.png\" alt=\"\" width=\"718\" height=\"304\" \/><\/p>\n<p>In the top right corner of the area where you add the text and the media of your post, you can see three options. The <strong>full-screen<\/strong> button &#8211; will remove all the distractions and will help you focus on your writing. The second option is the one that is chosen by default. This is the essence of the <strong>WYSIWYG<\/strong>. The <strong>Visual<\/strong>\u00a0option shows you how what you are writing is about to look at the front end of your WordPress website.<\/p>\n<p>And the option that you need to click to add a table to your WordPress site without using a plugin, is <strong>Text<\/strong>.<\/p>\n<p>By clicking here the HTML text editor will show up.<\/p>\n<p>If there is any amount of text written, you&#8217;ll see all the tags, and styles that are building it.<\/p>\n<p>&nbsp;<\/p>\n<h2>How to Create a Table in WordPress Without Plugin<\/h2>\n<p>Once you&#8217;ve entered the <strong>Text<\/strong> editor of your WordPress, the only thing you need to do is to throw in the code that will build your table.<\/p>\n<p>Add the following code in your text editor:<\/p>\n<blockquote>\n<pre><code>&lt;style&gt;\r\ntable, th, td {\r\nborder: 1px solid black;\r\nborder-collapse: collapse;\r\n}\r\n&lt;\/style&gt;\r\n&lt;h2&gt;Collapsed Borders&lt;\/h2&gt;\r\n&lt;p&gt;If you want the borders to collapse into one border, add the CSS border-collapse property.&lt;\/p&gt;\r\n&lt;table style=\u201dwidth:100%\u201d&gt;\r\n&lt;tbody&gt;&lt;tr&gt;\r\n&lt;th&gt;Firstname&lt;\/th&gt;\r\n&lt;th&gt;Lastname&lt;\/th&gt;\r\n&lt;th&gt;Age&lt;\/th&gt;\r\n&lt;\/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td&gt;Jill&lt;\/td&gt;\r\n&lt;td&gt;Smith&lt;\/td&gt;\r\n&lt;td&gt;50&lt;\/td&gt;\r\n&lt;\/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td&gt;Eve&lt;\/td&gt;\r\n&lt;td&gt;Jackson&lt;\/td&gt;\r\n&lt;td&gt;94&lt;\/td&gt;\r\n&lt;\/tr&gt;\r\n&lt;tr&gt;\r\n&lt;td&gt;John&lt;\/td&gt;\r\n&lt;td&gt;Doe&lt;\/td&gt;\r\n&lt;td&gt;80&lt;\/td&gt;\r\n&lt;\/tr&gt;\r\n&lt;\/tbody&gt;&lt;\/table&gt;<\/code><\/pre>\n<\/blockquote>\n<p>and the result you can expect is this:<\/p>\n<style>\n<p>table, th, td {<br \/>border: 1px solid black;<br \/>border-collapse: collapse;<br \/>}<\/p>\n<\/style>\n<p>&nbsp;<\/p>\n<h2>Collapsed Borders<\/h2>\n<p>If you want the borders to collapse into one border, add the CSS border-collapse property.<\/p>\n<table style=\"\u201dwidth: 100%\u201d;\">\n<tbody>\n<tr>\n<th>Firstname<\/th>\n<th>Lastname<\/th>\n<th>Age<\/th>\n<\/tr>\n<tr>\n<td>Jill<\/td>\n<td>Smith<\/td>\n<td>50<\/td>\n<\/tr>\n<tr>\n<td>Eve<\/td>\n<td>Jackson<\/td>\n<td>94<\/td>\n<\/tr>\n<tr>\n<td>John<\/td>\n<td>Doe<\/td>\n<td>80<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Now, you can add the information you want to your table. Just remove, or copy and paste any elements that you need or are an insufficient number.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>One of the best features of WordPress is its versatility. The abilities presented by the CMS to every one of its users. All of that functionality is at the distance of plugin installation. Still,\u00a0 installing a plugin is not the only way to use the vast number of options that WordPress has. At one time [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":30543,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"off","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"categories":[83],"tags":[],"class_list":["post-27070","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-maintenance"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Create a Table in WordPress Without Plugin | WordPress Tutorials<\/title>\n<meta name=\"description\" content=\"How to Create a Table in WordPress Without Plugin? This WordPress tutorial will show guide you through all the steps you need to take.\" \/>\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.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Create a Table in WordPress Without Plugin | WordPress Tutorials\" \/>\n<meta property=\"og:description\" content=\"How to Create a Table in WordPress Without Plugin? This WordPress tutorial will show guide you through all the steps you need to take.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/\" \/>\n<meta property=\"og:site_name\" content=\"AwardSpace.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/AwardSpace\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-11-20T15:04:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-28T07:26:47+00:00\" \/>\n<meta name=\"author\" content=\"Lazar Shishmanov, PhD\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@awspace\" \/>\n<meta name=\"twitter:site\" content=\"@awspace\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Lazar Shishmanov, PhD\" \/>\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:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/\"},\"author\":{\"name\":\"Lazar Shishmanov, PhD\",\"@id\":\"https:\/\/www.awardspace.com\/#\/schema\/person\/13f0961f1cff18623121a6716f08c58b\"},\"headline\":\"How to Create a Table in WordPress Without Plugin\",\"datePublished\":\"2018-11-20T15:04:10+00:00\",\"dateModified\":\"2024-02-28T07:26:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/\"},\"wordCount\":532,\"publisher\":{\"@id\":\"https:\/\/www.awardspace.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/#primaryimage\"},\"thumbnailUrl\":\"\",\"articleSection\":[\"Maintenance\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/\",\"url\":\"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/\",\"name\":\"How to Create a Table in WordPress Without Plugin | WordPress Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/www.awardspace.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/#primaryimage\"},\"thumbnailUrl\":\"\",\"datePublished\":\"2018-11-20T15:04:10+00:00\",\"dateModified\":\"2024-02-28T07:26:47+00:00\",\"description\":\"How to Create a Table in WordPress Without Plugin? This WordPress tutorial will show guide you through all the steps you need to take.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/#primaryimage\",\"url\":\"\",\"contentUrl\":\"\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.awardspace.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"WordPress Tutorials\",\"item\":\"https:\/\/www.awardspace.com\/wordpress-tutorials\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Maintenance\",\"item\":\"https:\/\/www.awardspace.com\/wordpress-tutorials\/maintenance\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"How to Create a Table in WordPress Without Plugin\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.awardspace.com\/#website\",\"url\":\"https:\/\/www.awardspace.com\/\",\"name\":\"AwardSpace.com\",\"description\":\"Free Web Hosting with PHP, MySQL, Email Sending, No Ads\",\"publisher\":{\"@id\":\"https:\/\/www.awardspace.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.awardspace.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.awardspace.com\/#organization\",\"name\":\"AwardSpace.com\",\"url\":\"https:\/\/www.awardspace.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.awardspace.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.awardspace.com\/wp-content\/uploads\/2018\/08\/awardspace_logo.png\",\"contentUrl\":\"https:\/\/www.awardspace.com\/wp-content\/uploads\/2018\/08\/awardspace_logo.png\",\"width\":1759,\"height\":176,\"caption\":\"AwardSpace.com\"},\"image\":{\"@id\":\"https:\/\/www.awardspace.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/AwardSpace\/\",\"https:\/\/x.com\/awspace\",\"https:\/\/www.instagram.com\/awardspace\/\",\"https:\/\/www.quora.com\/profile\/Award-Space\",\"https:\/\/www.linkedin.com\/company\/19214384\/\",\"https:\/\/www.reddit.com\/user\/AwardSpace\",\"https:\/\/www.pinterest.com\/awardspace\/\",\"https:\/\/www.youtube.com\/user\/AwardspaceWebHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.awardspace.com\/#\/schema\/person\/13f0961f1cff18623121a6716f08c58b\",\"name\":\"Lazar Shishmanov, PhD\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.awardspace.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/341ac134090ebf7e8095d20d79485f8652e19c1d00cfef899e40c69ec4ac10cb?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/341ac134090ebf7e8095d20d79485f8652e19c1d00cfef899e40c69ec4ac10cb?s=96&d=mm&r=g\",\"caption\":\"Lazar Shishmanov, PhD\"},\"description\":\"Lazar is a marketing specialist with more than ten years of experience in the field, eight of which as part of the marketing department at AwardSpace. Academically, Lazar holds a Bachelor's degree in Public Relations, a Master's degree in Semiotics, Language and Advertising, and is a PhD candidate in Integrated Marketing Communications. You can learn more about Lazar on his personal website.\",\"url\":\"https:\/\/www.awardspace.com\/author\/lazar\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Create a Table in WordPress Without Plugin | WordPress Tutorials","description":"How to Create a Table in WordPress Without Plugin? This WordPress tutorial will show guide you through all the steps you need to take.","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.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/","og_locale":"en_US","og_type":"article","og_title":"How to Create a Table in WordPress Without Plugin | WordPress Tutorials","og_description":"How to Create a Table in WordPress Without Plugin? This WordPress tutorial will show guide you through all the steps you need to take.","og_url":"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/","og_site_name":"AwardSpace.com","article_publisher":"https:\/\/www.facebook.com\/AwardSpace\/","article_published_time":"2018-11-20T15:04:10+00:00","article_modified_time":"2024-02-28T07:26:47+00:00","author":"Lazar Shishmanov, PhD","twitter_card":"summary_large_image","twitter_creator":"@awspace","twitter_site":"@awspace","twitter_misc":{"Written by":"Lazar Shishmanov, PhD","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/#article","isPartOf":{"@id":"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/"},"author":{"name":"Lazar Shishmanov, PhD","@id":"https:\/\/www.awardspace.com\/#\/schema\/person\/13f0961f1cff18623121a6716f08c58b"},"headline":"How to Create a Table in WordPress Without Plugin","datePublished":"2018-11-20T15:04:10+00:00","dateModified":"2024-02-28T07:26:47+00:00","mainEntityOfPage":{"@id":"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/"},"wordCount":532,"publisher":{"@id":"https:\/\/www.awardspace.com\/#organization"},"image":{"@id":"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/#primaryimage"},"thumbnailUrl":"","articleSection":["Maintenance"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/","url":"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/","name":"How to Create a Table in WordPress Without Plugin | WordPress Tutorials","isPartOf":{"@id":"https:\/\/www.awardspace.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/#primaryimage"},"image":{"@id":"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/#primaryimage"},"thumbnailUrl":"","datePublished":"2018-11-20T15:04:10+00:00","dateModified":"2024-02-28T07:26:47+00:00","description":"How to Create a Table in WordPress Without Plugin? This WordPress tutorial will show guide you through all the steps you need to take.","breadcrumb":{"@id":"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/#primaryimage","url":"","contentUrl":""},{"@type":"BreadcrumbList","@id":"https:\/\/www.awardspace.com\/wordpress-tutorials\/how-to-create-a-table-in-wordpress-without-plugin\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.awardspace.com\/"},{"@type":"ListItem","position":2,"name":"WordPress Tutorials","item":"https:\/\/www.awardspace.com\/wordpress-tutorials\/"},{"@type":"ListItem","position":3,"name":"Maintenance","item":"https:\/\/www.awardspace.com\/wordpress-tutorials\/maintenance\/"},{"@type":"ListItem","position":4,"name":"How to Create a Table in WordPress Without Plugin"}]},{"@type":"WebSite","@id":"https:\/\/www.awardspace.com\/#website","url":"https:\/\/www.awardspace.com\/","name":"AwardSpace.com","description":"Free Web Hosting with PHP, MySQL, Email Sending, No Ads","publisher":{"@id":"https:\/\/www.awardspace.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.awardspace.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.awardspace.com\/#organization","name":"AwardSpace.com","url":"https:\/\/www.awardspace.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.awardspace.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.awardspace.com\/wp-content\/uploads\/2018\/08\/awardspace_logo.png","contentUrl":"https:\/\/www.awardspace.com\/wp-content\/uploads\/2018\/08\/awardspace_logo.png","width":1759,"height":176,"caption":"AwardSpace.com"},"image":{"@id":"https:\/\/www.awardspace.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/AwardSpace\/","https:\/\/x.com\/awspace","https:\/\/www.instagram.com\/awardspace\/","https:\/\/www.quora.com\/profile\/Award-Space","https:\/\/www.linkedin.com\/company\/19214384\/","https:\/\/www.reddit.com\/user\/AwardSpace","https:\/\/www.pinterest.com\/awardspace\/","https:\/\/www.youtube.com\/user\/AwardspaceWebHosting"]},{"@type":"Person","@id":"https:\/\/www.awardspace.com\/#\/schema\/person\/13f0961f1cff18623121a6716f08c58b","name":"Lazar Shishmanov, PhD","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.awardspace.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/341ac134090ebf7e8095d20d79485f8652e19c1d00cfef899e40c69ec4ac10cb?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/341ac134090ebf7e8095d20d79485f8652e19c1d00cfef899e40c69ec4ac10cb?s=96&d=mm&r=g","caption":"Lazar Shishmanov, PhD"},"description":"Lazar is a marketing specialist with more than ten years of experience in the field, eight of which as part of the marketing department at AwardSpace. Academically, Lazar holds a Bachelor's degree in Public Relations, a Master's degree in Semiotics, Language and Advertising, and is a PhD candidate in Integrated Marketing Communications. You can learn more about Lazar on his personal website.","url":"https:\/\/www.awardspace.com\/author\/lazar\/"}]}},"_links":{"self":[{"href":"https:\/\/www.awardspace.com\/wp-json\/wp\/v2\/posts\/27070","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.awardspace.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.awardspace.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.awardspace.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.awardspace.com\/wp-json\/wp\/v2\/comments?post=27070"}],"version-history":[{"count":0,"href":"https:\/\/www.awardspace.com\/wp-json\/wp\/v2\/posts\/27070\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.awardspace.com\/wp-json\/"}],"wp:attachment":[{"href":"https:\/\/www.awardspace.com\/wp-json\/wp\/v2\/media?parent=27070"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.awardspace.com\/wp-json\/wp\/v2\/categories?post=27070"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.awardspace.com\/wp-json\/wp\/v2\/tags?post=27070"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}