{"id":94443,"date":"2017-09-01T12:34:47","date_gmt":"2017-09-01T12:34:47","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=94443"},"modified":"2024-07-03T09:00:47","modified_gmt":"2024-07-03T09:00:47","slug":"wordpress-add-custom-links-plugin-page","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/wordpress-add-custom-links-plugin-page\/","title":{"rendered":"WordPress Add Custom Links Plugin Page"},"content":{"rendered":"\n<p>WordPress Add Custom Links Plugin Page &#8211; In this post we see how we can create additional links to plugin on plugin page. These links can be very useful sometime e.g. we want add some user guide\u00a0link to plugin. Let&#8217;s start with creating test plugin &#8211;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;?php\n\n\/*\n * Plugin Name: Plugin Additional Links on Plugin Page\n * Description: Add additional links to plugin on plugin page along with meta information.\n * Author: Webkul\n * Author URI: https:\/\/webkul.com\n * Version: 1.0\n * Text Domain: domain\n*\/<\/pre>\n\n\n\n<p>The plugin will list on plugin page as shown below &#8211;<\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/09\/Plugins-\u2039-RMA-\u2014-WordPress.jpg\" target=\"_blank\" rel=\"noopener noreferrer\"><img decoding=\"async\" width=\"1339\" height=\"95\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/09\/Plugins-\u2039-RMA-\u2014-WordPress.jpg\" alt=\"WordPress Add Custom Links Plugin Page\" class=\"wp-image-94589\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/09\/Plugins-\u2039-RMA-\u2014-WordPress.jpg 1339w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/09\/Plugins-\u2039-RMA-\u2014-WordPress-250x18.jpg 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/09\/Plugins-\u2039-RMA-\u2014-WordPress-300x21.jpg 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/09\/Plugins-\u2039-RMA-\u2014-WordPress-768x54.jpg 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/09\/Plugins-\u2039-RMA-\u2014-WordPress-1200x85.jpg 1200w\" sizes=\"(max-width: 1339px) 100vw, 1339px\" loading=\"lazy\" \/><\/a><\/figure>\n\n\n\n<p>We will use &#8216;plugin row meta&#8217; hook and add filter on this hook to add additional links. WordPress provides such types of hooks for various actions so that we can easily customize the templates according to our need. And this is the thing which defines the beauty of WordPress.<\/p>\n\n\n\n<p>So, here we go &#8211;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;?php\n\n\/*\n * Plugin Name: Plugin Additional Links on Plugin Page\n * Description: Add additional links to plugin on plugin page along with meta information.\n * Author: Webkul\n * Author URI: https:\/\/webkul.com\n * Version: 1.0\n * Text Domain: domain\n*\/\n\nadd_filter( 'plugin_row_meta', 'wk_plugin_row_meta', 10, 2 );\n\nfunction wk_plugin_row_meta( $links, $file ) {    \n    if ( plugin_basename( __FILE__ ) == $file ) {\n        $row_meta = array(\n          'docs'    =&gt; '&lt;a href=\"' . esc_url( 'https:\/\/webkul.com\/blog\/' ) . '\" target=\"_blank\" aria-label=\"' . esc_attr__( 'Plugin Additional Links', 'domain' ) . '\" style=\"color:green;\"&gt;' . esc_html__( 'Docs', 'domain' ) . '&lt;\/a&gt;'\n        );\n\n        return array_merge( $links, $row_meta );\n    }\n    return (array) $links;\n}\n<\/pre>\n\n\n\n<p>In above code snippet, we can see that we apply one check &#8216;plugin_basename( __FILE__ ) == $file&#8217;. Actually this filter runs in loop for every plugin, Kindly visit\u00a0the <a href=\"https:\/\/store.webkul.com\/woocommerce-plugins.html\" target=\"_blank\" rel=\"noreferrer noopener\">WooCommerce plugins<\/a> page to explore a wide variety of solutions.<\/p>\n\n\n\n<p>So to add link to particular plugin in which we are working we applied check that file should be same as of current plugin then only the link will add otherwise the link will add to every plugin listed on plugin page.<\/p>\n\n\n\n<p>Using above code, We added link named Docs, so let&#8217;s see how it will look on plugin page &#8211;<\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/09\/Plugins-\u2039-RMA-\u2014-WordPress-1.jpg\" target=\"_blank\" rel=\"noopener noreferrer\"><img decoding=\"async\" width=\"1342\" height=\"97\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/09\/Plugins-\u2039-RMA-\u2014-WordPress-1.jpg\" alt=\"WordPress Add Custom Links Plugin Page\" class=\"wp-image-94604\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/09\/Plugins-\u2039-RMA-\u2014-WordPress-1.jpg 1342w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/09\/Plugins-\u2039-RMA-\u2014-WordPress-1-250x18.jpg 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/09\/Plugins-\u2039-RMA-\u2014-WordPress-1-300x22.jpg 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/09\/Plugins-\u2039-RMA-\u2014-WordPress-1-768x56.jpg 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/09\/Plugins-\u2039-RMA-\u2014-WordPress-1-1200x87.jpg 1200w\" sizes=\"(max-width: 1342px) 100vw, 1342px\" loading=\"lazy\" \/><\/a><\/figure>\n\n\n\n<div class=\"wk-index-wrap\"><h3 class=\"index-title\">Support<\/h3><\/div><div class=\"margin-bottom-50\">\n<p><\/p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p>Still have any issue feel free to add a ticket and let us know your views to make the code better&nbsp;<a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/<\/a><\/p>\n<\/div><\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p>Kindly visit&nbsp;the <a href=\"https:\/\/store.webkul.com\/woocommerce-plugins.html\" target=\"_blank\" rel=\"noreferrer noopener\">WooCommerce plugins<\/a>&nbsp;page to explore a wide variety of solutions to add more features to your online store get a <a href=\"https:\/\/webkul.com\/wordpress-theme-development-services\/\">Custom WordPress Theme Development Service<\/a>. Also, you can <a href=\"https:\/\/webkul.com\/hire-woocommerce-developers\/\" target=\"_blank\" rel=\"noreferrer noopener\">hire WooCommerce developers<\/a> for your project work.<\/p>\n<\/div><\/div>\n\n\n\n<p>!!Have a Great Day Ahead!! <\/p>\n\n\n\n<p>Thanks for Your Time! Have a Good Day!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>WordPress Add Custom Links Plugin Page &#8211; In this post we see how we can create additional links to plugin on plugin page. These links can be very useful sometime e.g. we want add some user guide\u00a0link to plugin. Let&#8217;s start with creating test plugin &#8211; &lt;?php \/* * Plugin Name: Plugin Additional Links on <a href=\"https:\/\/webkul.com\/blog\/wordpress-add-custom-links-plugin-page\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":109,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1260],"tags":[42,1258],"class_list":["post-94443","post","type-post","status-publish","format-standard","hentry","category-wordpress","tag-plugin","tag-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>WordPress Add Custom Links To Plugin on Plugin Page<\/title>\n<meta name=\"description\" content=\"WordPress Add Custom Links To Plugin On Plugin Page. Links can be used for various purposes like link to any external source.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/wordpress-add-custom-links-plugin-page\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"WordPress Add Custom Links To Plugin on Plugin Page\" \/>\n<meta property=\"og:description\" content=\"WordPress Add Custom Links To Plugin On Plugin Page. Links can be used for various purposes like link to any external source.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/wordpress-add-custom-links-plugin-page\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2017-09-01T12:34:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-03T09:00:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Varun Kumar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/imVvashistha\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Varun Kumar\" \/>\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:\/\/webkul.com\/blog\/wordpress-add-custom-links-plugin-page\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/wordpress-add-custom-links-plugin-page\/\"},\"author\":{\"name\":\"Varun Kumar\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/5f80f80fad3753d9bdfb065a31cc537d\"},\"headline\":\"WordPress Add Custom Links Plugin Page\",\"datePublished\":\"2017-09-01T12:34:47+00:00\",\"dateModified\":\"2024-07-03T09:00:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/wordpress-add-custom-links-plugin-page\/\"},\"wordCount\":301,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"keywords\":[\"plugin\",\"wordpress\"],\"articleSection\":[\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/wordpress-add-custom-links-plugin-page\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/wordpress-add-custom-links-plugin-page\/\",\"url\":\"https:\/\/webkul.com\/blog\/wordpress-add-custom-links-plugin-page\/\",\"name\":\"WordPress Add Custom Links To Plugin on Plugin Page\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"datePublished\":\"2017-09-01T12:34:47+00:00\",\"dateModified\":\"2024-07-03T09:00:47+00:00\",\"description\":\"WordPress Add Custom Links To Plugin On Plugin Page. Links can be used for various purposes like link to any external source.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/wordpress-add-custom-links-plugin-page\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/wordpress-add-custom-links-plugin-page\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/wordpress-add-custom-links-plugin-page\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"WordPress Add Custom Links Plugin Page\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/5f80f80fad3753d9bdfb065a31cc537d\",\"name\":\"Varun Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/2bf364f755500f5f58d13d0fddbeb303ae75529a58e113c5638c7d20ff48b18d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/2bf364f755500f5f58d13d0fddbeb303ae75529a58e113c5638c7d20ff48b18d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Varun Kumar\"},\"description\":\"Inquisitive.\",\"sameAs\":[\"https:\/\/x.com\/https:\/\/twitter.com\/imVvashistha\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/varun-kumar286\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"WordPress Add Custom Links To Plugin on Plugin Page","description":"WordPress Add Custom Links To Plugin On Plugin Page. Links can be used for various purposes like link to any external source.","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:\/\/webkul.com\/blog\/wordpress-add-custom-links-plugin-page\/","og_locale":"en_US","og_type":"article","og_title":"WordPress Add Custom Links To Plugin on Plugin Page","og_description":"WordPress Add Custom Links To Plugin On Plugin Page. Links can be used for various purposes like link to any external source.","og_url":"https:\/\/webkul.com\/blog\/wordpress-add-custom-links-plugin-page\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-09-01T12:34:47+00:00","article_modified_time":"2024-07-03T09:00:47+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png","type":"image\/png"}],"author":"Varun Kumar","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/imVvashistha","twitter_site":"@webkul","twitter_misc":{"Written by":"Varun Kumar","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/wordpress-add-custom-links-plugin-page\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/wordpress-add-custom-links-plugin-page\/"},"author":{"name":"Varun Kumar","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/5f80f80fad3753d9bdfb065a31cc537d"},"headline":"WordPress Add Custom Links Plugin Page","datePublished":"2017-09-01T12:34:47+00:00","dateModified":"2024-07-03T09:00:47+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/wordpress-add-custom-links-plugin-page\/"},"wordCount":301,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"keywords":["plugin","wordpress"],"articleSection":["WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/wordpress-add-custom-links-plugin-page\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/wordpress-add-custom-links-plugin-page\/","url":"https:\/\/webkul.com\/blog\/wordpress-add-custom-links-plugin-page\/","name":"WordPress Add Custom Links To Plugin on Plugin Page","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"datePublished":"2017-09-01T12:34:47+00:00","dateModified":"2024-07-03T09:00:47+00:00","description":"WordPress Add Custom Links To Plugin On Plugin Page. Links can be used for various purposes like link to any external source.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/wordpress-add-custom-links-plugin-page\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/wordpress-add-custom-links-plugin-page\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/wordpress-add-custom-links-plugin-page\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"WordPress Add Custom Links Plugin Page"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/5f80f80fad3753d9bdfb065a31cc537d","name":"Varun Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/2bf364f755500f5f58d13d0fddbeb303ae75529a58e113c5638c7d20ff48b18d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2bf364f755500f5f58d13d0fddbeb303ae75529a58e113c5638c7d20ff48b18d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Varun Kumar"},"description":"Inquisitive.","sameAs":["https:\/\/x.com\/https:\/\/twitter.com\/imVvashistha"],"url":"https:\/\/webkul.com\/blog\/author\/varun-kumar286\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/94443","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/109"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=94443"}],"version-history":[{"count":12,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/94443\/revisions"}],"predecessor-version":[{"id":450622,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/94443\/revisions\/450622"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=94443"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=94443"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=94443"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}