{"id":600,"date":"2011-08-04T08:17:12","date_gmt":"2011-08-04T02:17:12","guid":{"rendered":"http:\/\/w4dev.com\/?p=600"},"modified":"2017-12-17T21:12:14","modified_gmt":"2017-12-17T15:12:14","slug":"login-using-curl","status":"publish","type":"post","link":"https:\/\/w4dev.com\/wp\/login-using-curl\/","title":{"rendered":"Login to WordPress Admin Using Php cURL"},"content":{"rendered":"<p>You might have a WordPress site which generates a file\/information daily and you want to grab it without logging to your site. It can be done using cURL. So you don\u2019t have to loggin and view the page anymore. Just use this script on your local server and run the script. It will get you the content.<\/p>\n<h3>Following is a function to login into a wordpress site<\/h3>\n<pre><code>function curl_get_wp_login( $login_user, $login_pass, $login_url, $visit_url, $http_agent, $cookie_file ){\r\n\r\n\tif( !function_exists( 'curl_init' ) || ! function_exists( 'curl_exec' )){\r\n\t\t$m = \"cUrl is not vailable in you PHP server.\";\r\n\t\techo $m;\r\n\t}\r\n\r\n\t\/\/ Preparing postdata for wordpress login\r\n\t$data = \"log=\". $login_user .\"&amp;pwd=\" . $login_pass . \"&amp;wp-submit=Log%20In&amp;redirect_to=\" . $visit_url;\r\n\r\n\t\/\/ Intialize cURL\r\n\t$ch = curl_init();\r\n\r\n\t\/\/ Url to use\r\n\tcurl_setopt( $ch, CURLOPT_URL, $login_url );\r\n\r\n\t\/\/ Set the cookies for the login in a cookie file.\r\n\tcurl_setopt( $ch, CURLOPT_COOKIEJAR, $cookie_file );\r\n\t\r\n\t\/\/ Set SSL to false\r\n\tcurl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, false );\r\n\t\r\n\t\/\/ User agent\r\n\tcurl_setopt( $ch, CURLOPT_USERAGENT, $http_agent );\r\n\t\r\n\t\/\/ Maximum time cURL will wait for get response. in seconds\r\n\tcurl_setopt( $ch, CURLOPT_TIMEOUT, 60 );\r\n\t\r\n\tcurl_setopt( $ch, CURLOPT_FOLLOWLOCATION, 1 );\r\n\t\r\n\t\/\/ Return or echo the execution\r\n\tcurl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1 );\r\n\r\n\t\/\/ Set Http referer.\r\n\tcurl_setopt( $ch, CURLOPT_REFERER, $login_url );\r\n\r\n\t\/\/ Post fields to the login url\r\n\tcurl_setopt( $ch, CURLOPT_POSTFIELDS, $data );\r\n\tcurl_setopt( $ch, CURLOPT_POST, 1);\r\n\t\r\n\t\/\/ Save the return in a variable\r\n\t$content = curl_exec ($ch);\r\n\t\r\n\t\/*\r\n\t** if you need to visit another url ,you can do it here.\r\n\t** curl_setopt( $ch, CURLOPT_URL, 'a new url address or a file download url' );\r\n\t** $content = curl_exec ($ch);\r\n\t*\/\r\n\r\n\t\/\/ Close the cURL.\r\n\tcurl_close( $ch );\r\n\r\n\t\/\/ You can echo or return the page data here. \r\n\techo $content;\r\n}<\/code><\/pre>\n<p>Now, to use the function, some variable need to be assigned.<\/p>\n<pre><code>\/\/ Username for login\r\n$login_user = \"admin\";\r\n\r\n\r\n\/*\r\n** Password for this username\r\n*\/\r\n$login_pass = \"1234\";\r\n\r\n\r\n\/*\r\n** Login url address.\r\n*\/\r\n$login_url = \"http:\/\/localhost\/wordpress\/wp-login.php\";\r\n\r\n\r\n\/*\r\n** Which page you want to visit after login.\r\n** WordPress redirect their user automatically after login to this page\r\n** if you do not assign a visit page,\r\n** then the result for this login will return '1'.\r\n** That means you have logged in successfully.\r\n** Visit url is ipmportant to get the content.\r\n*\/\r\n$visit_url = urlencode( 'http:\/\/localhost\/wordpress\/' );\r\n\r\n\r\n\/*\r\n** Cookie vaiable\r\n*\/\r\n$cookie_file = \"\/cookie.txt\";\r\n\r\n\r\n\/*\r\n** Set HTTP user agent.\r\n*\/\r\n$http_agent = \"Mozilla\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko\/20070725 Firefox\/2.0.0.6\";\r\n\r\n\/\/ Test the call\r\ncurl_get_wp_login( $login_user, $login_pass, $login_url, $visit_url, $http_agent, $cookie_file );<\/code><\/pre>\n<p>This is how easy it it.<\/p>\n<p><strong>Remember:<\/strong><br \/>\n* cURL request does not download any assets (images, css) from html source code, so it load faster than normal.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>You might have a WordPress site which generates a file\/information daily and you want to grab it without logging to your site. It can be done using cURL. So you don\u2019t have to loggin and view the page anymore. Just use this script on your local server and run the script. It will get you [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":603,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"qubely_global_settings":"","qubely_interactions":"","_eb_attr":"","footnotes":""},"categories":[1],"tags":[],"class_list":["post-600","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-wp"],"qubely_featured_image_url":{"full":["https:\/\/w4dev.com\/wp-content\/uploads\/2013\/06\/curl.png",200,200,false],"landscape":["https:\/\/w4dev.com\/wp-content\/uploads\/2013\/06\/curl.png",200,200,false],"portraits":["https:\/\/w4dev.com\/wp-content\/uploads\/2013\/06\/curl.png",200,200,false],"thumbnail":["https:\/\/w4dev.com\/wp-content\/uploads\/2013\/06\/curl-150x150.png",150,150,true],"medium":["https:\/\/w4dev.com\/wp-content\/uploads\/2013\/06\/curl.png",200,200,false],"medium_large":["https:\/\/w4dev.com\/wp-content\/uploads\/2013\/06\/curl.png",200,200,false],"large":["https:\/\/w4dev.com\/wp-content\/uploads\/2013\/06\/curl.png",200,200,false],"1536x1536":["https:\/\/w4dev.com\/wp-content\/uploads\/2013\/06\/curl.png",200,200,false],"2048x2048":["https:\/\/w4dev.com\/wp-content\/uploads\/2013\/06\/curl.png",200,200,false],"qubely_landscape":["https:\/\/w4dev.com\/wp-content\/uploads\/2013\/06\/curl.png",200,200,false],"qubely_portrait":["https:\/\/w4dev.com\/wp-content\/uploads\/2013\/06\/curl.png",200,200,false],"qubely_thumbnail":["https:\/\/w4dev.com\/wp-content\/uploads\/2013\/06\/curl.png",100,100,false]},"qubely_author":{"display_name":"Shazzad Hossain Khan","author_link":"https:\/\/w4dev.com\/author\/shazzad\/"},"qubely_comment":3,"qubely_category":"<a href=\"https:\/\/w4dev.com\/category\/wp\/\" rel=\"category tag\">WordPress<\/a>","qubely_excerpt":"You might have a WordPress site which generates a file\/information daily and you want to grab it without logging to your site. It can be done using cURL. So you don\u2019t have to loggin and view the page anymore. Just use this script on your local server and run the script. It will get you&hellip;","yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Login to WordPress Admin Using Php cURL - W4dev<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/w4dev.com\/wp\/login-using-curl\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Login to WordPress Admin Using Php cURL - W4dev\" \/>\n<meta property=\"og:description\" content=\"You might have a WordPress site which generates a file\/information daily and you want to grab it without logging to your site. It can be done using cURL. So you don\u2019t have to loggin and view the page anymore. Just use this script on your local server and run the script. It will get you [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/w4dev.com\/wp\/login-using-curl\/\" \/>\n<meta property=\"og:site_name\" content=\"W4dev\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/w4dev\" \/>\n<meta property=\"article:author\" content=\"http:\/\/www.facebook.com\/shazzad.wp\" \/>\n<meta property=\"article:published_time\" content=\"2011-08-04T02:17:12+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-12-17T15:12:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/w4dev.com\/wp-content\/uploads\/2013\/06\/curl.png\" \/>\n\t<meta property=\"og:image:width\" content=\"200\" \/>\n\t<meta property=\"og:image:height\" content=\"200\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Shazzad Hossain Khan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/shazzadwp\" \/>\n<meta name=\"twitter:site\" content=\"@w4dev\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Shazzad Hossain Khan\" \/>\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:\\\/\\\/w4dev.com\\\/wp\\\/login-using-curl\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/wp\\\/login-using-curl\\\/\"},\"author\":{\"name\":\"Shazzad Hossain Khan\",\"@id\":\"https:\\\/\\\/w4dev.com\\\/#\\\/schema\\\/person\\\/6cffe5a17e4e7c920071c2d8e275bec7\"},\"headline\":\"Login to WordPress Admin Using Php cURL\",\"datePublished\":\"2011-08-04T02:17:12+00:00\",\"dateModified\":\"2017-12-17T15:12:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/wp\\\/login-using-curl\\\/\"},\"wordCount\":113,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/wp\\\/login-using-curl\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/w4dev.com\\\/wp-content\\\/uploads\\\/2013\\\/06\\\/curl.png\",\"articleSection\":[\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/w4dev.com\\\/wp\\\/login-using-curl\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/w4dev.com\\\/wp\\\/login-using-curl\\\/\",\"url\":\"https:\\\/\\\/w4dev.com\\\/wp\\\/login-using-curl\\\/\",\"name\":\"Login to WordPress Admin Using Php cURL - W4dev\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/wp\\\/login-using-curl\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/wp\\\/login-using-curl\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/w4dev.com\\\/wp-content\\\/uploads\\\/2013\\\/06\\\/curl.png\",\"datePublished\":\"2011-08-04T02:17:12+00:00\",\"dateModified\":\"2017-12-17T15:12:14+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/wp\\\/login-using-curl\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/w4dev.com\\\/wp\\\/login-using-curl\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/w4dev.com\\\/wp\\\/login-using-curl\\\/#primaryimage\",\"url\":\"https:\\\/\\\/w4dev.com\\\/wp-content\\\/uploads\\\/2013\\\/06\\\/curl.png\",\"contentUrl\":\"https:\\\/\\\/w4dev.com\\\/wp-content\\\/uploads\\\/2013\\\/06\\\/curl.png\",\"width\":200,\"height\":200},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/w4dev.com\\\/wp\\\/login-using-curl\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/w4dev.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Login to WordPress Admin Using Php cURL\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/w4dev.com\\\/#website\",\"url\":\"https:\\\/\\\/w4dev.com\\\/\",\"name\":\"W4dev\",\"description\":\"Best WordPress Plugins\",\"publisher\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/w4dev.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/w4dev.com\\\/#organization\",\"name\":\"W4dev\",\"url\":\"https:\\\/\\\/w4dev.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/w4dev.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/w4dev.com\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/w4dev-logo-2025.png\",\"contentUrl\":\"https:\\\/\\\/w4dev.com\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/w4dev-logo-2025.png\",\"width\":1022,\"height\":328,\"caption\":\"W4dev\"},\"image\":{\"@id\":\"https:\\\/\\\/w4dev.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/w4dev\",\"https:\\\/\\\/x.com\\\/w4dev\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/w4dev.com\\\/#\\\/schema\\\/person\\\/6cffe5a17e4e7c920071c2d8e275bec7\",\"name\":\"Shazzad Hossain Khan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6b16b41301e0e27abe50b08f308894664ce3a79e5906c9c8e80b5e2558854218?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6b16b41301e0e27abe50b08f308894664ce3a79e5906c9c8e80b5e2558854218?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6b16b41301e0e27abe50b08f308894664ce3a79e5906c9c8e80b5e2558854218?s=96&d=mm&r=g\",\"caption\":\"Shazzad Hossain Khan\"},\"sameAs\":[\"https:\\\/\\\/shazzad.me\",\"http:\\\/\\\/www.facebook.com\\\/shazzad.wp\",\"https:\\\/\\\/x.com\\\/https:\\\/\\\/twitter.com\\\/shazzadwp\"],\"url\":\"https:\\\/\\\/w4dev.com\\\/author\\\/shazzad\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Login to WordPress Admin Using Php cURL - W4dev","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:\/\/w4dev.com\/wp\/login-using-curl\/","og_locale":"en_US","og_type":"article","og_title":"Login to WordPress Admin Using Php cURL - W4dev","og_description":"You might have a WordPress site which generates a file\/information daily and you want to grab it without logging to your site. It can be done using cURL. So you don\u2019t have to loggin and view the page anymore. Just use this script on your local server and run the script. It will get you [&hellip;]","og_url":"https:\/\/w4dev.com\/wp\/login-using-curl\/","og_site_name":"W4dev","article_publisher":"https:\/\/www.facebook.com\/w4dev","article_author":"http:\/\/www.facebook.com\/shazzad.wp","article_published_time":"2011-08-04T02:17:12+00:00","article_modified_time":"2017-12-17T15:12:14+00:00","og_image":[{"width":200,"height":200,"url":"https:\/\/w4dev.com\/wp-content\/uploads\/2013\/06\/curl.png","type":"image\/png"}],"author":"Shazzad Hossain Khan","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/shazzadwp","twitter_site":"@w4dev","twitter_misc":{"Written by":"Shazzad Hossain Khan","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/w4dev.com\/wp\/login-using-curl\/#article","isPartOf":{"@id":"https:\/\/w4dev.com\/wp\/login-using-curl\/"},"author":{"name":"Shazzad Hossain Khan","@id":"https:\/\/w4dev.com\/#\/schema\/person\/6cffe5a17e4e7c920071c2d8e275bec7"},"headline":"Login to WordPress Admin Using Php cURL","datePublished":"2011-08-04T02:17:12+00:00","dateModified":"2017-12-17T15:12:14+00:00","mainEntityOfPage":{"@id":"https:\/\/w4dev.com\/wp\/login-using-curl\/"},"wordCount":113,"commentCount":0,"publisher":{"@id":"https:\/\/w4dev.com\/#organization"},"image":{"@id":"https:\/\/w4dev.com\/wp\/login-using-curl\/#primaryimage"},"thumbnailUrl":"https:\/\/w4dev.com\/wp-content\/uploads\/2013\/06\/curl.png","articleSection":["WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/w4dev.com\/wp\/login-using-curl\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/w4dev.com\/wp\/login-using-curl\/","url":"https:\/\/w4dev.com\/wp\/login-using-curl\/","name":"Login to WordPress Admin Using Php cURL - W4dev","isPartOf":{"@id":"https:\/\/w4dev.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/w4dev.com\/wp\/login-using-curl\/#primaryimage"},"image":{"@id":"https:\/\/w4dev.com\/wp\/login-using-curl\/#primaryimage"},"thumbnailUrl":"https:\/\/w4dev.com\/wp-content\/uploads\/2013\/06\/curl.png","datePublished":"2011-08-04T02:17:12+00:00","dateModified":"2017-12-17T15:12:14+00:00","breadcrumb":{"@id":"https:\/\/w4dev.com\/wp\/login-using-curl\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/w4dev.com\/wp\/login-using-curl\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/w4dev.com\/wp\/login-using-curl\/#primaryimage","url":"https:\/\/w4dev.com\/wp-content\/uploads\/2013\/06\/curl.png","contentUrl":"https:\/\/w4dev.com\/wp-content\/uploads\/2013\/06\/curl.png","width":200,"height":200},{"@type":"BreadcrumbList","@id":"https:\/\/w4dev.com\/wp\/login-using-curl\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/w4dev.com\/"},{"@type":"ListItem","position":2,"name":"Login to WordPress Admin Using Php cURL"}]},{"@type":"WebSite","@id":"https:\/\/w4dev.com\/#website","url":"https:\/\/w4dev.com\/","name":"W4dev","description":"Best WordPress Plugins","publisher":{"@id":"https:\/\/w4dev.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/w4dev.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/w4dev.com\/#organization","name":"W4dev","url":"https:\/\/w4dev.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/w4dev.com\/#\/schema\/logo\/image\/","url":"https:\/\/w4dev.com\/wp-content\/uploads\/2026\/02\/w4dev-logo-2025.png","contentUrl":"https:\/\/w4dev.com\/wp-content\/uploads\/2026\/02\/w4dev-logo-2025.png","width":1022,"height":328,"caption":"W4dev"},"image":{"@id":"https:\/\/w4dev.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/w4dev","https:\/\/x.com\/w4dev"]},{"@type":"Person","@id":"https:\/\/w4dev.com\/#\/schema\/person\/6cffe5a17e4e7c920071c2d8e275bec7","name":"Shazzad Hossain Khan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/6b16b41301e0e27abe50b08f308894664ce3a79e5906c9c8e80b5e2558854218?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/6b16b41301e0e27abe50b08f308894664ce3a79e5906c9c8e80b5e2558854218?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6b16b41301e0e27abe50b08f308894664ce3a79e5906c9c8e80b5e2558854218?s=96&d=mm&r=g","caption":"Shazzad Hossain Khan"},"sameAs":["https:\/\/shazzad.me","http:\/\/www.facebook.com\/shazzad.wp","https:\/\/x.com\/https:\/\/twitter.com\/shazzadwp"],"url":"https:\/\/w4dev.com\/author\/shazzad\/"}]}},"_links":{"self":[{"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/posts\/600","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/comments?post=600"}],"version-history":[{"count":0,"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/posts\/600\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/media\/603"}],"wp:attachment":[{"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/media?parent=600"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/categories?post=600"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/w4dev.com\/wp-json\/wp\/v2\/tags?post=600"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}