{"id":97931,"date":"2019-12-30T11:20:21","date_gmt":"2019-12-30T17:20:21","guid":{"rendered":"https:\/\/wpengine.com\/?post_type=resource&#038;p=97931"},"modified":"2024-09-28T11:20:39","modified_gmt":"2024-09-28T16:20:39","slug":"jquery-wordpress","status":"publish","type":"resource","link":"https:\/\/wpengine.com\/case-studies\/resources\/jquery-wordpress\/","title":{"rendered":"How to Use jQuery in WordPress"},"content":{"rendered":"\n<p>Getting started with <a href=\"https:\/\/developer.wordpress.org\/\" target=\"_blank\" rel=\"noreferrer noopener\">development for WordPress<\/a> can be fun and exciting. In terms of programming, it has a fairly low barrier to entry and can be learned quickly. There are aspects of manipulating content and data that are not always clear to newcomers, however.\u00a0<\/p>\n\n\n\n<p>That\u2019s where jQuery script comes in. This is a JavaScript library that\u2019s very popular with WordPress developers for creating unique, dynamic, and engaging websites. jQuery is also a solid choice for customizing themes and developing features for plugins.&nbsp;<\/p>\n\n\n\n<p>In this article, we\u2019ll explain exactly what jQuery is and why it\u2019s useful for WordPress development. We\u2019ll also go over how to add jQuery to your website with and without a jQuery plugin. Let\u2019s dive right in!&nbsp;<\/p>\n\n\n\n\n\n<h2 class=\"wp-block-heading\">What is jQuery?<\/h2>\n\n\n\n<p>To understand <a href=\"https:\/\/jquery.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">jQuery<\/a>, you also need to be <a href=\"https:\/\/wpengine.com\/resources\/wordpress-javascript\/\" target=\"_blank\" rel=\"noreferrer noopener\">familiar with JavaScript<\/a>. This is a programming language that can be used to manipulate, calculate, and validate data on a website. It can also be used to update and change Hypertext Markup Language (HTML code) and Cascading Style Sheets (CSS). In other words, it\u2019s a way to create rules for your website\u2019s content and structure.&nbsp;<\/p>\n\n\n\n<p>JavaScript operates off of a wide variety of different <a href=\"https:\/\/www.javascripting.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">scripting libraries<\/a>. jQuery is one of those options. In particular, it\u2019s an open-source library that creates client-side (or front-end) functionality. This means that when you see a rotating feature or slider on a website, you\u2019re likely seeing jQuery at work (just to give a few examples).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why Use jQuery on Your WordPress Site?<\/h2>\n\n\n\n<p>There are plenty of benefits to using jQuery code on your WordPress website. Not only can you create engaging, dynamic, and interactive elements for your site&#8217;s visitors, but you can do it without clogging up your available bandwidth.&nbsp;<\/p>\n\n\n\n<p>This is because you can use a jQuery function to execute certain actions right in the user\u2019s browser, without having to make them reload the web page. For example, jQuery can be used to determine what actions will occur when a user clicks on a certain element.<\/p>\n\n\n\n<p>In fact, jQuery is actually a part of the WordPress <a href=\"https:\/\/wordpress.stackexchange.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">development &#8220;stack.&#8221;<\/a> This means it\u2019s essential to learn about if you\u2019re planning on doing any <a href=\"https:\/\/wpengine.com\/support\/staging-development-environments-wp-engine\/\" target=\"_blank\" rel=\"noreferrer noopener\">development with WordPress<\/a>.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Add jQuery to Your WordPress Site (In 3 Steps)<\/h2>\n\n\n\n<p>The jQuery library itself comes <a href=\"https:\/\/wpengine.com\/support\/including-a-different-jquery-version-in-wordpress\/\" target=\"_blank\" rel=\"noreferrer noopener\">bundled with your WordPress installation<\/a>. That means it\u2019s already in place and ready to be called upon for use. With that in mind, let\u2019s take a look at how you can use jQuery on your WordPress site without a plugin.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Enter Compatibility Mode<\/h3>\n\n\n\n<p>It\u2019s important to first put jQuery into compatibility mode. This means that as soon as it\u2019s loaded onto the web page, it will enter a mode that will help <a href=\"https:\/\/learn.jquery.com\/using-jquery-core\/avoid-conflicts-other-libraries\/\" target=\"_blank\" rel=\"noreferrer noopener\">keep it from conflicting<\/a> with any other JavaScript libraries you might be using.&nbsp;<\/p>\n\n\n\n<p>To accomplish this, you can use a <a href=\"https:\/\/gist.github.com\/danielpataki\/1888a154b37133479e4049ee943e0fb7#file-enqueue-theme-php\" target=\"_blank\" rel=\"noreferrer noopener\">simple script<\/a>:&nbsp;<\/p>\n\n\n\n<p><code>$.noConflict();<br>jQuery(document).ready(function(){<br>&nbsp;&nbsp;jQuery(\"button\").click(function(){<br> jQuery(\"p\").text(\"jQuery is still working!\");<br>&nbsp;&nbsp;});<br>});<\/code><\/p>\n\n\n\n<p>Essentially, the goal of a compatibility mode is to avoid issues with using the \u2018<code>$<\/code>\u2019 shortcut. Since jQuery is not the only library that uses that shortcut, you can also <a href=\"https:\/\/learn.jquery.com\/using-jquery-core\/avoid-conflicts-other-libraries\/\" target=\"_blank\" rel=\"noreferrer noopener\">designate your own<\/a> after you engage compatibility mode.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Create a Script File<\/h3>\n\n\n\n<p>To incorporate your functions properly, you\u2019ll next need to create a script file and save it to your theme\u2019s folder. You can name this JS file to represent your new function, and use the Javascript extension (<em>.js<\/em>). For our example, we\u2019ll call our JS file <em>new_script.js<\/em>.<\/p>\n\n\n\n<p>The cleanest way to manage your files in this situation is to place this file in a new subfolder within your theme\u2019s main folder, and to call it <em>\/js\/<\/em>. Additionally, depending on your theme choice and structure, you might want to also consider <a href=\"https:\/\/wpengine.com\/resources\/create-child-theme-wordpress\/\" target=\"_blank\" rel=\"noreferrer noopener\">creating a child theme<\/a> to experiment with. This will ensure that your parent theme files remain intact.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Add Code to Your Functions.php File<\/h3>\n\n\n\n<p>Next, you need to locate the <em>functions.php <\/em>file. This should be in your theme\u2019s folder, but if not, you can simply create your own. This is the file <a href=\"https:\/\/developer.wordpress.org\/themes\/basics\/theme-functions\/\" target=\"_blank\" rel=\"noreferrer noopener\">where all the action is<\/a>. You can add custom functions to it, and make your theme unique.&nbsp;<\/p>\n\n\n\n<p>The way to do this with WordPress is to use the <em>wp_enqueue_script()<\/em> function. This is how you tell the theme to pull in and use your <em>new_script.js<\/em> file. Your script <a href=\"https:\/\/gist.github.com\/danielpataki\/1888a154b37133479e4049ee943e0fb7#file-enqueue-theme-php\" target=\"_blank\" rel=\"noreferrer noopener\">might look like this<\/a>:&nbsp;<\/p>\n\n\n\n<p><code>function my_theme_scripts() {<br>&nbsp;&nbsp;&nbsp;&nbsp;wp_enqueue_script( 'my-great-script', get_template_directory_uri() . '\/js\/my-great-script.js', array( 'jquery' ), '1.0.0', true );<br>}<br>add_action( 'wp_enqueue_scripts', 'my_theme_scripts' );<\/code><\/p>\n\n\n\n<p>There are also a <a href=\"https:\/\/developer.wordpress.org\/reference\/functions\/wp_enqueue_script\/#parameters\" target=\"_blank\" rel=\"noreferrer noopener\">number of parameters<\/a> you can use with the <em>wp_enqueu_script() <\/em>function. All but one of these parameters are optional. The one you must include is the <em>$handle<\/em> parameter, which designates the unique name of the script.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">jQuery Plugins<\/h2>\n\n\n\n<p>If diving into the world of WordPress functions and scripts is not for you, there is an alternative option. There are plugins you can use that will help you incorporate jQuery script into your website. Two quality options include:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/wordpress.org\/plugins\/advanced-custom-fields\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Advanced Custom Fields<\/strong><\/a>: This plugin makes it easy to add custom fields to your edit screens, by making extensive use of this jQuery function.&nbsp;<\/li>\n\n\n\n<li><a href=\"https:\/\/wordpress.org\/plugins\/custom-css-js\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Simple Custom CSS and JS<\/strong><\/a>: This tool is useful if you want to make changes or additions to your WordPress theme with custom JavaScript code without having to write the code.<\/li>\n<\/ul>\n\n\n\n<p>We do recommend gaining at least a basic knowledge of <a href=\"https:\/\/developer.wordpress.org\/themes\/basics\/including-css-javascript\/\" target=\"_blank\" rel=\"noreferrer noopener\">jQuery and how it works with WordPress<\/a> before choosing a plugin to work with.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Using jQuery With a WordPress Plugin (In 2 Steps)<\/h2>\n\n\n\n<p>If you know what you want to accomplish by including jQuery scripts on your WordPress website, you should be able to find a plugin in the directory that will help. Let\u2019s look at one example of how using this type of plugin on your site might work.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Install the Plugin and Add a New Custom Field<\/h3>\n\n\n\n<p>For our example, we\u2019re going to use the <a href=\"https:\/\/www.advancedcustomfields.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">Advanced Custom Fields<\/a> plugin:&nbsp;<\/p>\n\n\n\n<p>Once you\u2019ve <a href=\"https:\/\/wordpress.org\/plugins\/advanced-custom-fields\/\" target=\"_blank\" rel=\"noreferrer noopener\">installed and activated the plugin<\/a>, you\u2019ll be able to adjust its settings for use on your website. Then, you can navigate to <em>Custom Fields &gt; Add New<\/em> to create your first custom field:&nbsp;<\/p>\n\n\n\n<p>The first thing you\u2019ll need to do is label the field group your custom field will belong to:&nbsp;<\/p>\n\n\n\n<p>You can then use the <em>Add Field <\/em>button to name your new field. This will open up a form where you can add all the information about it:&nbsp;<\/p>\n\n\n\n<p>After you fill out the new field form, you can also designate a location for your field. This means you\u2019ll choose the edit pages the field will appear on:&nbsp;<\/p>\n\n\n\n<p>You\u2019ll have a lot of options to choose from here, depending on your website\u2019s structure and WordPress theme. Once you\u2019re done configuring your settings, you can <em>Publish<\/em> your new field and it will be available in the location you designated.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Test Your New Field<\/h3>\n\n\n\n<p>In our example, we created a custom field that is supposed to appear on the post edit page. To test the field, you can navigate to <em>Posts &gt; Add New<\/em>:&nbsp;<\/p>\n\n\n\n<p>Your new post will now have a custom field below the main editing area. You can design custom fields that accomplish a wide variety of tasks \u2013 to learn more about your options, <a href=\"https:\/\/wpengine.com\/resources\/custom-fields-wordpress\/\">check out our full <\/a><a href=\"https:\/\/wpengine.com\/resources\/custom-fields-wordpress\/\" target=\"_blank\" rel=\"noreferrer noopener\">g<\/a><a href=\"https:\/\/wpengine.com\/resources\/custom-fields-wordpress\/\">uide<\/a> on the topic.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Get Ahead With WP Engine<\/h2>\n\n\n\n<p>Understanding how to enhance and extend WordPress\u2019 native features can help you take your website\u2019s experience to the next level for its users. Having the right jQuery tutorial and web <a href=\"https:\/\/developer.wordpress.org\/\" target=\"_blank\" rel=\"noreferrer noopener\">developer resources<\/a> on hand can be your ticket to tackling new techniques with WordPress.&nbsp;<\/p>\n\n\n\n<p><a href=\"https:\/\/wpengine.com\/wordpress-hosting\/\" target=\"_blank\" rel=\"noreferrer noopener\">Hosting for WordPress sites with WP Engine<\/a> means building the ultimate digital experience, with advanced techniques, professional support, and reliably <a href=\"https:\/\/wpengine.com\/fast-wordpress-hosting\/\">fast hosting<\/a>!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Getting started with development for WordPress can be fun and exciting. In terms of programming, it has a fairly low barrier to entry and can be learned quickly. There are aspects of manipulating content and data that are not always clear to newcomers, however.\u00a0 That\u2019s where jQuery script comes in. This is a JavaScript library<span class=\"tile__ellipses\">&hellip;<\/span><span class=\"tile__ellipses--animated\"><\/span><\/p>\n","protected":false},"author":1,"featured_media":127032,"template":"","resource-topic":[901],"resource-role":[895,896,906,897],"resource-type":[916],"class_list":["post-97931","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 Use jQuery on WordPress Sites<\/title>\n<meta name=\"description\" content=\"jQuery is a great way to add side scripting to your WordPress site. Check our guide to using jQuery and sharpen your skills today!\" \/>\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 Use jQuery on WordPress Sites\" \/>\n<meta property=\"og:description\" content=\"jQuery is a great way to add side scripting to your WordPress site. Check the WP Engine guide to using jQuery and sharpen your skills today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wpengine.com\/case-studies\/resources\/jquery-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=\"2024-09-28T16:20:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2022\/02\/shutterstock_1477470695.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"627\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"How to Use jQuery on WordPress Sites\" \/>\n<meta name=\"twitter:description\" content=\"jQuery is a great way to add side scripting to your WordPress site. Check the WP Engine guide to using jQuery and sharpen your skills today!\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2022\/02\/shutterstock_1477470695.png\" \/>\n<meta name=\"twitter:site\" content=\"@wpengine\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 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\/jquery-wordpress\/\",\"url\":\"https:\/\/wpengine.com\/case-studies\/resources\/jquery-wordpress\/\",\"name\":\"How to Use jQuery on WordPress Sites\",\"isPartOf\":{\"@id\":\"https:\/\/wpengine.com\/case-studies\/#website\"},\"datePublished\":\"2019-12-30T17:20:21+00:00\",\"dateModified\":\"2024-09-28T16:20:39+00:00\",\"description\":\"jQuery is a great way to add side scripting to your WordPress site. Check our guide to using jQuery and sharpen your skills today!\",\"breadcrumb\":{\"@id\":\"https:\/\/wpengine.com\/case-studies\/resources\/jquery-wordpress\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/wpengine.com\/case-studies\/resources\/jquery-wordpress\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/resources\/jquery-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 Use jQuery 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 Use jQuery on WordPress Sites","description":"jQuery is a great way to add side scripting to your WordPress site. Check our guide to using jQuery and sharpen your skills today!","robots":{"index":"noindex","follow":"follow"},"og_locale":"en_US","og_type":"article","og_title":"How to Use jQuery on WordPress Sites","og_description":"jQuery is a great way to add side scripting to your WordPress site. Check the WP Engine guide to using jQuery and sharpen your skills today!","og_url":"https:\/\/wpengine.com\/case-studies\/resources\/jquery-wordpress\/","og_site_name":"WP Engine","article_publisher":"https:\/\/www.facebook.com\/wpengine","article_modified_time":"2024-09-28T16:20:39+00:00","og_image":[{"width":1200,"height":627,"url":"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2022\/02\/shutterstock_1477470695.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_title":"How to Use jQuery on WordPress Sites","twitter_description":"jQuery is a great way to add side scripting to your WordPress site. Check the WP Engine guide to using jQuery and sharpen your skills today!","twitter_image":"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2022\/02\/shutterstock_1477470695.png","twitter_site":"@wpengine","twitter_misc":{"Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/wpengine.com\/case-studies\/resources\/jquery-wordpress\/","url":"https:\/\/wpengine.com\/case-studies\/resources\/jquery-wordpress\/","name":"How to Use jQuery on WordPress Sites","isPartOf":{"@id":"https:\/\/wpengine.com\/case-studies\/#website"},"datePublished":"2019-12-30T17:20:21+00:00","dateModified":"2024-09-28T16:20:39+00:00","description":"jQuery is a great way to add side scripting to your WordPress site. Check our guide to using jQuery and sharpen your skills today!","breadcrumb":{"@id":"https:\/\/wpengine.com\/case-studies\/resources\/jquery-wordpress\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wpengine.com\/case-studies\/resources\/jquery-wordpress\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/wpengine.com\/case-studies\/resources\/jquery-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 Use jQuery 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\/2019\/12\/shutterstock_1574486632.jpg","media-type":{"term_id":916,"name":"Article","slug":"article"},"role":"<strong>Roles:<\/strong> Agency, Developer, Entrepreneur, Freelancer","topic":"<strong>Topics:<\/strong> WordPress","_links":{"self":[{"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource\/97931","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\/127032"}],"wp:attachment":[{"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/media?parent=97931"}],"wp:term":[{"taxonomy":"resource-topic","embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource-topic?post=97931"},{"taxonomy":"resource-role","embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource-role?post=97931"},{"taxonomy":"resource-type","embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource-type?post=97931"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}