{"id":109788,"date":"2020-08-25T14:20:08","date_gmt":"2020-08-25T19:20:08","guid":{"rendered":"https:\/\/wpengine.com\/?post_type=resource&#038;p=109788"},"modified":"2025-03-20T14:04:23","modified_gmt":"2025-03-20T19:04:23","slug":"get-user-ip-wordpress","status":"publish","type":"resource","link":"https:\/\/wpengine.com\/case-studies\/resources\/get-user-ip-wordpress\/","title":{"rendered":"How to Get and Display a User\u2019s IP Address in WordPress"},"content":{"rendered":"\n<p>Do your users need to know their IP addresses in order to configure one of your products? Or is your site plagued by spam comments, and nothing seems to stop them? Both of these very different scenarios call for the same solution: you\u2019ll need to find and display IP addresses.<\/p>\n\n\n\n<p>IPs are the street addresses of the internet. When computers need to share \u201cpackages\u201d of data with each other, they need to know where to send the information, and that\u2019s just what IP addresses are for. Thanks to its huge array of powerful tools, WordPress makes it easy to find these addresses, no matter why you need them.<\/p>\n\n\n\n<p>In this article, we\u2019ll cover how to enable users to see their own IP address, and how to track your users\u2019 IPs as an administrator. Let\u2019s get to work!<\/p>\n\n\n\n\n\n<h2 class=\"wp-block-heading\">Why Display a User\u2019s IP Address?<\/h2>\n\n\n\n<p>Generally, users only need to see their own IP addresses if they need them for a specific purpose. Some examples might include:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Configuring a new network<\/li>\n\n\n\n<li>Setting up new networking equipment<\/li>\n\n\n\n<li>Whitelisting themselves on a website or network<\/li>\n\n\n\n<li>Providing personal information to an application<\/li>\n<\/ul>\n\n\n\n<p>Websites that display the user\u2019s IP are very useful in these situations, so it could be a valuable service to provide for your visitors. There are even <a href=\"https:\/\/www.whatismyip.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">sites dedicated entirely<\/a> to this purpose. If your site hosts software that requires users to enter their IPs, displaying that information is a smart way to provide extra value.<\/p>\n\n\n\n<p>Most of the reasons an administrator would need a user\u2019s IP address revolve around <a href=\"https:\/\/wpengine.com\/resources\/wordpress-vulnerability-scanner\/\" target=\"_blank\" rel=\"noreferrer noopener\">website security<\/a>. Blacklisting the IP addresses of troublemakers on forums and preventing spam comments are common scenarios where you\u2019d want to know a user\u2019s IP. In these cases, blocking the IP prevents the user from simply making a new account to bypass a ban.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Find a User\u2019s IP Address in WordPress<\/h2>\n\n\n\n<p>Finding the IP of a user who made a comment on your WordPress site is relatively simple. First, head to your WordPress dashboard and navigate to the <em>Comments<\/em> section in the sidebar. This will display all of the comments on your site:<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/zhQnDlN44DwfanZAAT4TmMgMwdOr42ztdY5gIrwFnX6zFQro5Ojh4z9JlBeRPx8WP3T3g63RnHJe6abtkSr3t4-oLsS5CKip_WfMs7qKTHn-q3oKZkYJbhaNfsPoTO0W4SqJAh6D\" alt=\"Screenshot showing how to find a user's IP address in WordPress. How to Get and Display a User\u2019s IP Address in WordPress\" \/><\/figure>\n\n\n\n<p>The IP address of each commenter can be found in the <em>Author<\/em> column, under their username and email address. You can filter the display to only show certain types of comments if you have a lot to sort through. There\u2019s also a handy search bar if you know the username you\u2019re looking for, or some of the relevant comment\u2019s text.<\/p>\n\n\n\n<p>Popular forum plugins, such as <a href=\"https:\/\/wordpress.org\/plugins\/buddypress\/\" target=\"_blank\" rel=\"noreferrer noopener\">BuddyPress<\/a> and <a href=\"https:\/\/wordpress.org\/plugins\/bbpress\/\" target=\"_blank\" rel=\"noreferrer noopener\">bbPress<\/a>, may also enable you to view the IP addresses of posters. You\u2019ll want to consult the documentation for your specific plugin for more details.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Display a User\u2019s IP Address (To Them)<\/h2>\n\n\n\n<p>Displaying a WordPress user\u2019s IP address so that they can see it is fairly simple. You\u2019ll just need to add a few lines of code to your theme\u2019s <em>functions.php<\/em> file. Then you\u2019ll use a shortcode to display the IP address on a page or post.<\/p>\n\n\n\n<p>Here\u2019s the code you\u2019ll need:<\/p>\n\n\n\n<p><code>function get_the_user_ip() {<\/code><\/p>\n\n\n\n<p><code>if ( ! empty( $_SERVER['HTTP_CLIENT_IP'] ) ) {<\/code><\/p>\n\n\n\n<p><code>\/\/check ip from share internet<\/code><\/p>\n\n\n\n<p><code>$ip = $_SERVER['HTTP_CLIENT_IP'];<\/code><\/p>\n\n\n\n<p><code>} elseif ( ! empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {<\/code><\/p>\n\n\n\n<p><code>\/\/to check ip is pass from proxy<\/code><\/p>\n\n\n\n<p><code>$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];<\/code><\/p>\n\n\n\n<p><code>} else {<\/code><\/p>\n\n\n\n<p><code>$ip = $_SERVER['REMOTE_ADDR'];<\/code><\/p>\n\n\n\n<p><code>}<\/code><\/p>\n\n\n\n<p><code>return apply_filters( 'wpb_get_ip', $ip );<\/code><\/p>\n\n\n\n<p><code>}<\/code><\/p>\n\n\n\n<p><code>add_shortcode('display_ip', 'get_the_user_ip');<\/code><\/p>\n\n\n\n<p>This code creates the <em>display_ip <\/em>shortcode, and tells it to retrieve the user\u2019s IP address when the code is run.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Add the Code to <em>functions.php<\/em><\/h3>\n\n\n\n<p>From your WordPress dashboard, navigate to <em>Appearance &gt; Theme Editor<\/em> and select <em>Theme Functions <\/em>from the list on the right. This is the <em>functions.php <\/em>file for your theme:<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/WR32wllAgyk5l-MK-lgkxYs87R63CBKaKZr5xQWB85vzrHwYDr3jnndnc79jOuCNwgwhCMOUSwxuil9iOIwjP43xEIj1lOB6Unfpk-nQDlKLyI_cHTBYvYG24QGJVIGK2lT1sCRl\" alt=\"Screenshot showing how to add code to functions.php in WordPress theme editor. How to Get and Display a User\u2019s IP Address in WordPress\" \/><\/figure>\n\n\n\n<p>Copy the code snippet above, and paste it at the bottom of this file:<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/lh6.googleusercontent.com\/2hZP_Xx_8mJXEBN_e2rF0cgCS224Jon-r7ofhIwScZI_ruys0ct2-h2x45HradOJQpV3TJokHnSmNsssNrvZzDD58aPkaNuhi46vLtZv6C6ac_fp5PYDLjoVgOKnPuFOft1tmzmb\" alt=\"Screenshot showing where to paste code snippet. How to Get and Display a User\u2019s IP Address in WordPress\" \/><\/figure>\n\n\n\n<p>Then click on <em>Update File <\/em>at the bottom of the page.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Add the Shortcode to Your Page or Post<\/h3>\n\n\n\n<p>Next, you&#8217;ll need to insert the <em>display_ip<\/em> shortcode onto the page where you want to display the IP address. There are a few options here: you can <a href=\"https:\/\/wpengine.com\/resources\/your-shortcode-is-showing\/\" target=\"_blank\" rel=\"noreferrer noopener\">insert the shortcode<\/a> directly into a post or page, or place it in a widget so that it shows up in the footer or sidebar on all pages.<\/p>\n\n\n\n<p>For our example, we\u2019ll place the shortcode on a page using a widget:<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/1_-zguWUMA-juKX-XGgq60rIcZnRzqwHFRtQ7y2sMAAAv9x0OeoB_RfL0NAt-90Ig345unEkS2a1fursoVC0_2SeVwzJ-gaFAghxKzm87q7KGadGz_fT8rKYhWwB11fRyOnOysms\" alt=\"Screenshot showing how to place shortcode on a page using a widget in WordPress. How to Get and Display a User\u2019s IP Address in WordPress\" \/><\/figure>\n\n\n\n<p>To do this, open up the page in the Block Editor, add a block using the \u201cplus\u201d icon, and search for \u201cshortcode\u201d. Then just type the shortcode you created into the field. Save your changes and you\u2019re done!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Track a User\u2019s IP Address<\/h2>\n\n\n\n<p>If you need to track a user\u2019s IP address for security or administrative purposes, a WordPress plugin is your best bet. There are several options available, but for this example we\u2019ll use <a href=\"https:\/\/wordpress.org\/plugins\/tracemyip-visitor-analytics-ip-tracking-control\/\" target=\"_blank\" rel=\"noreferrer noopener\">TraceMyIP Visitor IP Tracker<\/a>:<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/JiSgNqmMHDNyEwLFId1SCoP58jIJk0lbYPhWWCQEdsR77qDoLxODgi-Kh7JcHzxRmx53Cpk89J2VcZKukmNV0fL6NGdthSD-c5ISz0AphmcFRy-9ZAZSJXJdH9JbZmCs91-KGQnN\" alt=\"Screenshot showing TraceMyIP Visitor IP Tracker logo. How to Get and Display a User\u2019s IP Address in WordPress\" \/><\/figure>\n\n\n\n<p>TraceMyIP is a free plugin and service, which enables site administrators to monitor and track the IP addresses that visit their pages in detail. This information can then be used to block IPs that are problematic for the site, such as spammers, forum trolls, and malicious login attempts.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Install the Plugin<\/h3>\n\n\n\n<p>To get started, go to your WordPress dashboard, navigate to <em>Plugins &gt; Add New<\/em>,<em> <\/em>and search for \u201cTraceMyIP\u201d. Install and activate the plugin.<\/p>\n\n\n\n<p>You\u2019ll now have an entry in your dashboard called <em>TraceMyIP<\/em>. Clicking on this brings you to the plugin\u2019s dashboard, where you can sign up for an account. There is a free option that includes most of the features you\u2019re likely to need.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Add the Tracking Code<\/h3>\n\n\n\n<p>Sign up for an account, and follow the instructions you receive next. Eventually you\u2019ll get a code that you need to paste into the header section of your theme.<\/p>\n\n\n\n<p>To do this, go to your dashboard and navigate to <em>Appearance &gt; Theme Editor. <\/em>Select the <em>Theme Header<\/em> (<em>header.php) <\/em>file from the list on the right, and paste the code at the bottom of the file:<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/2N73hnUc2cngZ3wp-YWgwEMublyJdUhk7hx5YYJWVsSKnPKQuukLQHdn6YChN5hnO069wcq_h7ixrKt6FiD2b_a_EXC_G0bFwdFAIXoPNAHKK7ByPIZdvKbWg9UMHLmFgxL9C3iU\" alt=\"Screenshot showing how to add tracking code to your Theme Header in WordPress. How to Get and Display a User\u2019s IP Address in WordPress\" \/><\/figure>\n\n\n\n<p>Once that\u2019s done, the plugin will start tracking visitors. To view this activity, head to the plugin\u2019s dashboard and select <em>My Projects<\/em>. You\u2019ll see an overview of all the information that\u2019s been collected, which you can sort through to get more details:<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/y1Ukg7JWacMMtlXV8wnwDDGm0wS7ntxSJDcyxZwur_XptWgXlh8WFNI7fCLMcVseRzqMSsJ4UQyaCgauBbXrEsmjmCacPKPchRtadfnkAkzbSdI5Y0YsQt0d36NRIk4gqTe_J6gH\" alt=\"Screenshot showing how to track visitor activity using the TraceMyIP plugin for WordPress. How to Get and Display a User\u2019s IP Address in WordPress\" \/><\/figure>\n\n\n\n<p>Now you\u2019re all set to track the IP addresses that visit your site.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Do More with WP Engine<\/h2>\n\n\n\n<p>The ability to pull IP addresses from your site\u2019s visitors is useful in many different scenarios, from helping users to blacklisting attackers. WordPress\u2019 flexibility makes accomplishing either of these tasks easy.<\/p>\n\n\n\n<p>If you need your site to do more, WP Engine can help. We offer <a href=\"https:\/\/wpengine.com\/resources\/\" target=\"_blank\" rel=\"noreferrer noopener\">the best resources<\/a> on the web for WordPress developers, along with <a href=\"https:\/\/wpengine.com\/plans\/\" target=\"_blank\" rel=\"noreferrer noopener\">flexible plans<\/a> for our <a href=\"https:\/\/wpengine.com\/wordpress-hosting\/\" target=\"_blank\" rel=\"noreferrer noopener\">hosting services for WordPress<\/a> to help you deliver incredible digital experiences to your users!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Do your users need to know their IP addresses in order to configure one of your products? Or is your site plagued by spam comments, and nothing seems to stop them? Both of these very different scenarios call for the same solution: you\u2019ll need to find and display IP addresses. IPs are the street addresses<span class=\"tile__ellipses\">&hellip;<\/span><span class=\"tile__ellipses--animated\"><\/span><\/p>\n","protected":false},"author":1,"featured_media":109790,"template":"","resource-topic":[901],"resource-role":[895,896,903,899],"resource-type":[916],"class_list":["post-109788","resource","type-resource","status-publish","has-post-thumbnail","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How To Display A User\u2019s IP Address in WordPress<\/title>\n<meta name=\"description\" content=\"Want to get a user\u2019s IP address from your WordPress site? Use the WP Engine guide on how to display user IP addresses.\" \/>\n<meta name=\"robots\" content=\"noindex, follow\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Display A User\u2019s IP Address in WordPress\" \/>\n<meta property=\"og:description\" content=\"Want to get a user\u2019s IP address on your WordPress site? Discover the WP Engine guide on how to display user IP addresses, enabling them to see their IP on site.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wpengine.com\/case-studies\/resources\/get-user-ip-wordpress\/\" \/>\n<meta property=\"og:site_name\" content=\"WP Engine\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/wpengine\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-20T19:04:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2020\/08\/shutterstock_539023054-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1100\" \/>\n\t<meta property=\"og:image:height\" content=\"500\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"How To Display A User\u2019s IP Address in WordPress\" \/>\n<meta name=\"twitter:description\" content=\"Want to get a user\u2019s IP address on your WordPress site? Discover the WP Engine guide on how to display user IP addresses, enabling them to see their IP on site.\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2020\/08\/shutterstock_539023054-1.jpg\" \/>\n<meta name=\"twitter:site\" content=\"@wpengine\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/resources\/get-user-ip-wordpress\/\",\"url\":\"https:\/\/wpengine.com\/case-studies\/resources\/get-user-ip-wordpress\/\",\"name\":\"How To Display A User\u2019s IP Address in WordPress\",\"isPartOf\":{\"@id\":\"https:\/\/wpengine.com\/case-studies\/#website\"},\"datePublished\":\"2020-08-25T19:20:08+00:00\",\"dateModified\":\"2025-03-20T19:04:23+00:00\",\"description\":\"Want to get a user\u2019s IP address from your WordPress site? Use the WP Engine guide on how to display user IP addresses.\",\"breadcrumb\":{\"@id\":\"https:\/\/wpengine.com\/case-studies\/resources\/get-user-ip-wordpress\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/wpengine.com\/case-studies\/resources\/get-user-ip-wordpress\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/resources\/get-user-ip-wordpress\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/wpengine.com\/case-studies\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Resources\",\"item\":\"https:\/\/wpengine.com\/case-studies\/resources\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Get and Display a User\u2019s IP Address in WordPress\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/#website\",\"url\":\"https:\/\/wpengine.com\/case-studies\/\",\"name\":\"WP Engine\",\"description\":\"Managed Hosting for WordPress\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/wpengine.com\/case-studies\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/#\/schema\/person\/f5301455463371a10d1fc290e9ad0085\",\"name\":\"WP Engine\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d8770fe9625ca7c4601f13d9d0ab86565a6dac8cd6a77bfe2ada6d83c6837870?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d8770fe9625ca7c4601f13d9d0ab86565a6dac8cd6a77bfe2ada6d83c6837870?s=96&d=mm&r=g\",\"caption\":\"WP Engine\"},\"sameAs\":[\"https:\/\/wpengine.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Display A User\u2019s IP Address in WordPress","description":"Want to get a user\u2019s IP address from your WordPress site? Use the WP Engine guide on how to display user IP addresses.","robots":{"index":"noindex","follow":"follow"},"og_locale":"en_US","og_type":"article","og_title":"How To Display A User\u2019s IP Address in WordPress","og_description":"Want to get a user\u2019s IP address on your WordPress site? Discover the WP Engine guide on how to display user IP addresses, enabling them to see their IP on site.","og_url":"https:\/\/wpengine.com\/case-studies\/resources\/get-user-ip-wordpress\/","og_site_name":"WP Engine","article_publisher":"https:\/\/www.facebook.com\/wpengine","article_modified_time":"2025-03-20T19:04:23+00:00","og_image":[{"width":1100,"height":500,"url":"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2020\/08\/shutterstock_539023054-1.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_title":"How To Display A User\u2019s IP Address in WordPress","twitter_description":"Want to get a user\u2019s IP address on your WordPress site? Discover the WP Engine guide on how to display user IP addresses, enabling them to see their IP on site.","twitter_image":"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2020\/08\/shutterstock_539023054-1.jpg","twitter_site":"@wpengine","twitter_misc":{"Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/wpengine.com\/case-studies\/resources\/get-user-ip-wordpress\/","url":"https:\/\/wpengine.com\/case-studies\/resources\/get-user-ip-wordpress\/","name":"How To Display A User\u2019s IP Address in WordPress","isPartOf":{"@id":"https:\/\/wpengine.com\/case-studies\/#website"},"datePublished":"2020-08-25T19:20:08+00:00","dateModified":"2025-03-20T19:04:23+00:00","description":"Want to get a user\u2019s IP address from your WordPress site? Use the WP Engine guide on how to display user IP addresses.","breadcrumb":{"@id":"https:\/\/wpengine.com\/case-studies\/resources\/get-user-ip-wordpress\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wpengine.com\/case-studies\/resources\/get-user-ip-wordpress\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/wpengine.com\/case-studies\/resources\/get-user-ip-wordpress\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wpengine.com\/case-studies\/"},{"@type":"ListItem","position":2,"name":"Resources","item":"https:\/\/wpengine.com\/case-studies\/resources\/"},{"@type":"ListItem","position":3,"name":"How to Get and Display a User\u2019s IP Address in WordPress"}]},{"@type":"WebSite","@id":"https:\/\/wpengine.com\/case-studies\/#website","url":"https:\/\/wpengine.com\/case-studies\/","name":"WP Engine","description":"Managed Hosting for WordPress","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wpengine.com\/case-studies\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/wpengine.com\/case-studies\/#\/schema\/person\/f5301455463371a10d1fc290e9ad0085","name":"WP Engine","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wpengine.com\/case-studies\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d8770fe9625ca7c4601f13d9d0ab86565a6dac8cd6a77bfe2ada6d83c6837870?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d8770fe9625ca7c4601f13d9d0ab86565a6dac8cd6a77bfe2ada6d83c6837870?s=96&d=mm&r=g","caption":"WP Engine"},"sameAs":["https:\/\/wpengine.com"]}]}},"acf":[],"grid_image_url":"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2020\/08\/shutterstock_539023054-2.jpg","media-type":{"term_id":916,"name":"Article","slug":"article"},"role":"<strong>Roles:<\/strong> Agency, Developer, Marketer, Site Owner","topic":"<strong>Topics:<\/strong> WordPress","_links":{"self":[{"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource\/109788","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource"}],"about":[{"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/types\/resource"}],"author":[{"embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/users\/1"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/media\/109790"}],"wp:attachment":[{"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/media?parent=109788"}],"wp:term":[{"taxonomy":"resource-topic","embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource-topic?post=109788"},{"taxonomy":"resource-role","embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource-role?post=109788"},{"taxonomy":"resource-type","embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource-type?post=109788"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}