{"id":434,"date":"2015-04-03T15:06:46","date_gmt":"2015-04-03T10:06:46","guid":{"rendered":"http:\/\/128.199.176.160\/?p=434"},"modified":"2026-04-14T14:20:11","modified_gmt":"2026-04-14T09:20:11","slug":"three-most-wanted-tricks-for-wordpress-developers","status":"publish","type":"post","link":"https:\/\/wpbrigade.com\/three-most-wanted-tricks-for-wordpress-developers\/","title":{"rendered":"Three Essential Tricks For WordPress Developers"},"content":{"rendered":"\n<p>WordPress is a specially crafted platform to publish content on the web. Many of the big giant content publishers are using WordPress like CNN, NYTimes, etc. You, as a content writer, find WordPress deadly easy and super cool to work on because WordPress provides many customizations to make your content looks good, and also many of us are spending time to add some spice to WordPress. Here I want you to add even more to your content writing experience.<br><\/p>\n\n\n\n<p>Following are the three most wanted WordPress tricks to make your writing experience easy and even better.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-how-to-restrict-the-authors-to-view-only-the-comments-which-belong-to-their-own-posts-in-the-admin-area\">How to restrict the authors to view only the comments which belong to their own posts in the admin area?<\/h3>\n\n\n\n<p>Just open up functions.php of your current&nbsp;theme and put this code in it, but keep in mind if you put this&nbsp;code in your functions.php will only be limited to your current theme. So better to make a plugin.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">require( ABSPATH . WPINC . '\/pluggable.php' );\n\nfunction myplugin_get_comment_list_by_user($clauses) {\n    if (is_admin()) {\n        global $user_ID, $wpdb;\n        $clauses['join'] = \",\". $wpdb-&gt;base_prefix.\"posts\";\n        $clauses['where'] .= \" AND \".$wpdb-&gt;base_prefix.\"posts.post_author = \".$user_ID.\" AND \".$wpdb-&gt;base_prefix.\"comments.comment_post_ID = \".$wpdb-&gt;base_prefix.\"posts.ID\";\n    };\n    return $clauses;\n};\n\/\/ ensure that editors and admins can moderate everything\nif(!current_user_can('edit_others_posts')) {\n    add_filter('comments_clauses', 'myplugin_get_comment_list_by_user');\n}<\/pre>\n\n\n\n<p>As you know the comments are stored in a separate table and are identified by post_id. So, I have just modified the query which is run by WordPress whenever the comments page opened in the admin.<\/p>\n\n\n\n<p>How to set the first image of the post as a featured image?<br>Sometimes, we need to set our post&#8217;s first image as a featured image and WordPress doesn&#8217;t give any support for this thing. You can use the following code snippet to get this functionality.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">add_filter('the_content', 'set_post_featured_image');\nfunction set_post_featured_image($content) {\nglobal $post;\nif (!has_post_thumbnail()) {\n\n$all_attached_images = get_children(array(\n'post_parent' =&gt; $post-&gt;ID, \n'post_status' =&gt; 'inherit', \n'post_type' =&gt; 'attachment', \n'post_mime_type' =&gt; 'image', \n'order' =&gt; 'ASC', \n'orderby' =&gt; 'menu_order'\n));\nif ($all_attached_images) {\nforeach ($all_attached_images as $attached_image) {\nset_post_thumbnail($post-&gt;ID, $attached_image-&gt;ID);\nbreak;\n}\n$content = the_post_thumbnail() . $content;\n}\n}\nreturn $content;\n}<\/pre>\n\n\n\n<p>I am applying a filter to the contents of the post and the job done.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-how-to-retrieve-your-gravatar-image\">How to retrieve your Gravatar image?<\/h3>\n\n\n\n<p>Having a profile picture on your profile means great credibility and recognition on social networks and other websites, which is usually known as &#8220;avatar image&#8221;.<\/p>\n\n\n\n<p>WordPress provides its own service know as <a href=\"https:\/\/en.gravatar.com\/\" target=\"_blank\" rel=\"noopener\">Gravatar<\/a>. We will walk you through that how to retrieve your&nbsp;profile image from Gravatar.<\/p>\n\n\n\n<p>WordPress has a built-in function to retrieve an image from Gravatar, this function required two parameters: <strong>ID<\/strong> or <strong>usre_email<\/strong> of the user and the size of an image.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$user_id = get_the_author_meta('ID');\necho get_avatar($user_id, 80);<\/pre>\n\n\n\n<p>If you want to use user email, use get_the_author_meta()<span style=\"font-family: monospace, serif;\"><span style=\"font-size: 15px;\">&nbsp;<\/span><\/span>function with user_email<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$user_id = get_the_author_meta('user_email');\necho get_avatar($user_id, 80);<\/pre>\n\n\n\n<p>This will give us an image of 80px.<\/p>\n\n\n\n<p>If you know any other way of doing these&nbsp;tricks for WordPress, let us know in the comments below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>WordPress is a specially crafted platform to publish content on the web. Many of the big giant content publishers are using WordPress like CNN, NYTimes, etc. You, as a content writer, find WordPress deadly easy and super cool to work on because WordPress provides many customizations to make your content looks good, and also many [&hellip;]<\/p>\n","protected":false},"author":9268,"featured_media":320250,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_analytify_skip_tracking":false,"footnotes":""},"categories":[47],"tags":[43,46,23],"class_list":["post-434","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tips-and-tricks","tag-tips","tag-tricks","tag-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.5 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Three Most Wanted Tricks for WordPress Developers<\/title>\n<meta name=\"description\" content=\"How to set first image of post as featured image ... restrict the authors to view only the comments which belong to their own posts ... tricks for wordpress\" \/>\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\/three-most-wanted-tricks-for-wordpress-developers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Three Essential Tricks For WordPress Developers\" \/>\n<meta property=\"og:description\" content=\"How to set first image of post as featured image ... restrict the authors to view only the comments which belong to their own posts ... tricks for wordpress\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wpbrigade.com\/three-most-wanted-tricks-for-wordpress-developers\/\" \/>\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-03T10:06:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-14T09:20:11+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/three-essential-tricks-for-wordPress-developers.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1500\" \/>\n\t<meta property=\"og:image:height\" content=\"800\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/three-most-wanted-tricks-for-wordpress-developers\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/three-most-wanted-tricks-for-wordpress-developers\\\/\"},\"author\":{\"name\":\"Editorial Team\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#\\\/schema\\\/person\\\/2dea64860327e163e768333724338de6\"},\"headline\":\"Three Essential Tricks For WordPress Developers\",\"datePublished\":\"2015-04-03T10:06:46+00:00\",\"dateModified\":\"2026-04-14T09:20:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/three-most-wanted-tricks-for-wordpress-developers\\\/\"},\"wordCount\":394,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/three-most-wanted-tricks-for-wordpress-developers\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wpbrigade.com\\\/wp-content\\\/uploads\\\/2015\\\/04\\\/three-essential-tricks-for-wordPress-developers.png\",\"keywords\":[\"tips\",\"tricks\",\"WordPress\"],\"articleSection\":[\"Tips and Tricks\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/wpbrigade.com\\\/three-most-wanted-tricks-for-wordpress-developers\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/three-most-wanted-tricks-for-wordpress-developers\\\/\",\"url\":\"https:\\\/\\\/wpbrigade.com\\\/three-most-wanted-tricks-for-wordpress-developers\\\/\",\"name\":\"Three Most Wanted Tricks for WordPress Developers\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/three-most-wanted-tricks-for-wordpress-developers\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/three-most-wanted-tricks-for-wordpress-developers\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wpbrigade.com\\\/wp-content\\\/uploads\\\/2015\\\/04\\\/three-essential-tricks-for-wordPress-developers.png\",\"datePublished\":\"2015-04-03T10:06:46+00:00\",\"dateModified\":\"2026-04-14T09:20:11+00:00\",\"description\":\"How to set first image of post as featured image ... restrict the authors to view only the comments which belong to their own posts ... tricks for wordpress\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/three-most-wanted-tricks-for-wordpress-developers\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/wpbrigade.com\\\/three-most-wanted-tricks-for-wordpress-developers\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/three-most-wanted-tricks-for-wordpress-developers\\\/#primaryimage\",\"url\":\"https:\\\/\\\/wpbrigade.com\\\/wp-content\\\/uploads\\\/2015\\\/04\\\/three-essential-tricks-for-wordPress-developers.png\",\"contentUrl\":\"https:\\\/\\\/wpbrigade.com\\\/wp-content\\\/uploads\\\/2015\\\/04\\\/three-essential-tricks-for-wordPress-developers.png\",\"width\":1500,\"height\":800,\"caption\":\"Three essential tricks for wordpress developers\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/wpbrigade.com\\\/three-most-wanted-tricks-for-wordpress-developers\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/wpbrigade.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Three Essential Tricks For WordPress Developers\"}]},{\"@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":"Three Most Wanted Tricks for WordPress Developers","description":"How to set first image of post as featured image ... restrict the authors to view only the comments which belong to their own posts ... tricks for wordpress","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\/three-most-wanted-tricks-for-wordpress-developers\/","og_locale":"en_US","og_type":"article","og_title":"Three Essential Tricks For WordPress Developers","og_description":"How to set first image of post as featured image ... restrict the authors to view only the comments which belong to their own posts ... tricks for wordpress","og_url":"https:\/\/wpbrigade.com\/three-most-wanted-tricks-for-wordpress-developers\/","og_site_name":"WPBrigade","article_publisher":"https:\/\/facebook.com\/WPBrigade","article_published_time":"2015-04-03T10:06:46+00:00","article_modified_time":"2026-04-14T09:20:11+00:00","og_image":[{"width":1500,"height":800,"url":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/three-essential-tricks-for-wordPress-developers.png","type":"image\/png"}],"author":"Editorial Team","twitter_card":"summary_large_image","twitter_creator":"@wpbrigade","twitter_site":"@wpbrigade","twitter_misc":{"Written by":"Editorial Team","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/wpbrigade.com\/three-most-wanted-tricks-for-wordpress-developers\/#article","isPartOf":{"@id":"https:\/\/wpbrigade.com\/three-most-wanted-tricks-for-wordpress-developers\/"},"author":{"name":"Editorial Team","@id":"https:\/\/wpbrigade.com\/#\/schema\/person\/2dea64860327e163e768333724338de6"},"headline":"Three Essential Tricks For WordPress Developers","datePublished":"2015-04-03T10:06:46+00:00","dateModified":"2026-04-14T09:20:11+00:00","mainEntityOfPage":{"@id":"https:\/\/wpbrigade.com\/three-most-wanted-tricks-for-wordpress-developers\/"},"wordCount":394,"commentCount":0,"publisher":{"@id":"https:\/\/wpbrigade.com\/#organization"},"image":{"@id":"https:\/\/wpbrigade.com\/three-most-wanted-tricks-for-wordpress-developers\/#primaryimage"},"thumbnailUrl":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/three-essential-tricks-for-wordPress-developers.png","keywords":["tips","tricks","WordPress"],"articleSection":["Tips and Tricks"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/wpbrigade.com\/three-most-wanted-tricks-for-wordpress-developers\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/wpbrigade.com\/three-most-wanted-tricks-for-wordpress-developers\/","url":"https:\/\/wpbrigade.com\/three-most-wanted-tricks-for-wordpress-developers\/","name":"Three Most Wanted Tricks for WordPress Developers","isPartOf":{"@id":"https:\/\/wpbrigade.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wpbrigade.com\/three-most-wanted-tricks-for-wordpress-developers\/#primaryimage"},"image":{"@id":"https:\/\/wpbrigade.com\/three-most-wanted-tricks-for-wordpress-developers\/#primaryimage"},"thumbnailUrl":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/three-essential-tricks-for-wordPress-developers.png","datePublished":"2015-04-03T10:06:46+00:00","dateModified":"2026-04-14T09:20:11+00:00","description":"How to set first image of post as featured image ... restrict the authors to view only the comments which belong to their own posts ... tricks for wordpress","breadcrumb":{"@id":"https:\/\/wpbrigade.com\/three-most-wanted-tricks-for-wordpress-developers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wpbrigade.com\/three-most-wanted-tricks-for-wordpress-developers\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wpbrigade.com\/three-most-wanted-tricks-for-wordpress-developers\/#primaryimage","url":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/three-essential-tricks-for-wordPress-developers.png","contentUrl":"https:\/\/wpbrigade.com\/wp-content\/uploads\/2015\/04\/three-essential-tricks-for-wordPress-developers.png","width":1500,"height":800,"caption":"Three essential tricks for wordpress developers"},{"@type":"BreadcrumbList","@id":"https:\/\/wpbrigade.com\/three-most-wanted-tricks-for-wordpress-developers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wpbrigade.com\/"},{"@type":"ListItem","position":2,"name":"Three Essential Tricks For WordPress Developers"}]},{"@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\/434","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=434"}],"version-history":[{"count":2,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/posts\/434\/revisions"}],"predecessor-version":[{"id":319110,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/posts\/434\/revisions\/319110"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/media\/320250"}],"wp:attachment":[{"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/media?parent=434"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/categories?post=434"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wpbrigade.com\/wpb-api\/wp\/v2\/tags?post=434"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}