{"id":95232,"date":"2012-09-01T08:51:14","date_gmt":"2012-09-01T12:51:14","guid":{"rendered":"http:\/\/wpmu.org\/?p=95232"},"modified":"2012-12-06T15:51:33","modified_gmt":"2012-12-06T20:51:33","slug":"how-to-style-wordpress-widgets","status":"publish","type":"post","link":"https:\/\/wpmudev.com\/blog\/how-to-style-wordpress-widgets\/","title":{"rendered":"How to Add Custom Styles to WordPress Widgets"},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2012\/09\/how-to-style-wordpress-widgets.jpg\" alt=\"WordPress Widgets - Tips for adding custom styles to any widget\" title=\"WordPress Widgets - How to add custom styles\" width=\"550\" height=\"395\" class=\"aligncenter size-full wp-image-95942\" \/><\/p>\n<h2>WordPress widgets; ooh&#8230; we love &#8217;em, don&#8217;t we?<\/h2>\n<p>The functionality and flexibility that WordPress widgets can add to our blogs and sites is unmatched (imho) by other platforms. Just do a <a href=\"http:\/\/wordpress.org\/extend\/plugins\/search.php?q=widget&#038;sort=new\" title=\"Search the WordPress plugin repository for \"widget\"\" target=\"_blank\">quick search of the WordPress repository for <em>widget<\/em><\/a>, and you&#8217;ll find over 1000 plugins that can include a new widget for your blog!<\/p>\n<p>But, regardless of the quantity and quality of WordPress widgets available, every once in a while, we install a WordPress plugin with a widget that doesn&#8217;t quite fit the look and feel of our site. Sometimes, (sorry designers), the built-in styling looks just awful.<\/p>\n<p>Then again, there are times when we&#8217;d simply like a specific widget to stand out from the rest in our sidebar. This little tutorial will give you a few basic tips on how to<\/p>\n<ul>\n<li>just tweak individual WordPress widgets a little bit<\/li>\n<li>customize things by removing some of the information displayed in the widget<\/li>\n<li>ensure the same custom style is applied to all widgets in your sidebar, or throughout your site<\/li>\n<li>re-arrange how the information is outputted by a widget<\/li>\n<\/ul>\n<p>Note that for that last point, we won&#8217;t be touching any plugin files or editing any php code. All our customizations will be done via CSS in the style-sheet of our theme or child-theme. That means that the order in which the various elements are called by the widget code won&#8217;t change. We can, however, do a bit of pretty nifty stuff with CSS alone.<\/p>\n<p>For the purposes of this tutorial, we&#8217;ll be using a simple text widget so you can get the hang of things. Once you&#8217;re familiar with how easy is actually is to get your WordPress widgets looking the way <strong>you <\/strong>want, you&#8217;ll have a ball creating custom styles for almost any widget on your site.<\/p>\n<h3>Create a test widget<\/h3>\n<p>Go to &#8220;Appearance&#8221; &gt; &#8220;Widgets&#8221; in your WordPress back-end and drag a text widget to your sidebar, or any other widget area where you&#8217;d like to play around a bit. Give your widget any title you like, add the following to your widget and <strong>Save<\/strong>.<\/p>\n<pre>\r\n&lt;div class=\"my-entry\"&gt;\r\n&lt;div class=\"my-title\"&gt;\r\n&lt;h4&gt;This is the title&lt;\/h4&gt;\r\n&lt;\/div&gt;\r\n&lt;div class=\"my-image\"&gt;\r\n&lt;a href=\"http:\/\/www.flickr.com\/photos\/kevinmcmanus\/3956021578\/\" title=\"Thatched roof cottage by K Mick, on Flickr\"&gt;&lt;img src=\"https:\/\/farm3.staticflickr.com\/2431\/3956021578_8579b5943c_m.jpg\" width=\"240\" height=\"161\" alt=\"Thatched roof cottage\"&gt;&lt;\/a&gt;\r\n&lt;\/div&gt;\r\n&lt;div class=\"my-content\"&gt;\r\nHere is a bit of content to describe what's going on here. This could be some automatically generated text like a post excerpt, rss feed, or text you enter yourself in a widget like this one.\r\n&lt;\/div&gt;\r\n&lt;\/div&gt;\r\n<\/pre>\n<p>The above code will generate a widget on your site similar to the image below:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2012\/08\/text-widget1.png\" alt=\"WordPress Widgets - Screenshot of a test widget 1\" title=\"WordPress Widgets -  Custom styling 1\" width=\"269\" height=\"377\" class=\"aligncenter size-full wp-image-95635\" \/><\/p>\n<p>This is a very basic display that inherits the base sidebar styles in the theme style-sheet. While we do have full control over the content in this widget (we just entered it manually), let&#8217;s pretend for now that it&#8217;s generated by some plugin. That&#8217;s also why we added div containers around the image and the content, &#8216;cuz most plugins will enclose elements in some kind of container for styling purposes (we may not need to use them, but they&#8217;re there for our exercise). Now let&#8217;s make our test widget stand out from all the others on our site.<\/p>\n\n<h3>Styling a single widget<\/h3>\n<p>In the window in which you are viewing your site, launch your browser&#8217;s developer tools. For tips and links to documentation of popular browser developer tools, see &#8220;Tip #1&#8221; of this article: <a href=\"https:\/\/wpmudev.com\/blog\/wordpress-theme-stylesheets\/\" title=\"WPMU.org -  5 Tips to Organize Your WordPress Theme Stylesheet and Make it Easier to Navigate\" target=\"_blank\">5 Tips to Organize Your WordPress Theme Stylesheet and Make it Easier to Navigate<\/a>. (For the rest of this article, I&#8217;ll be referring to tool names found in Firebug for Firefox.)<\/p>\n<p>Using the &#8220;Inspect Element&#8221; tool, highlight the text widget you just created. You should see something like the image below:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2012\/08\/text-widget-html.png\" alt=\"WordPress Widgets - Screenshot of Firebug\" title=\"WordPress Widgets -  Firebug inspect element\" width=\"1104\" height=\"232\" class=\"aligncenter size-full wp-image-95351\" \/><\/p>\n<p>See where it says &#8220;<strong>id=&#8221;text-5<\/strong>&#8221; in the html window on the left? That&#8217;s the ID of the text widget we just created. That ID is what is going to help us create styles that will be specific to that particular widget. So, in all the custom styles we will be adding to our style-sheet, they will be preceded by that ID, ensuring that the styles will be applied <strong>only <\/strong>to that widget.<\/p>\n<p>For the rest of this exercise, we&#8217;ll be adding some custom styles to our site. There are 3 ways we can do this:<\/p>\n<ol>\n<li>Open your theme\/child-theme&#8217;s style-sheet in your favorite text editor (you will need to re-upload the edited file via FTP)<\/li>\n<li>Use the theme editor in your WordPress admin panel<\/li>\n<li>Use the new \u201cCustom CSS module\u201d in Jetpack. For more on this new feature, see <a href=\"https:\/\/wpmudev.com\/blog\/jetpack-1-7-adds-custom-css-to-the-wordpress-dashboard\/\" title=\"WPMU.org -  Jetpack 1.7 Adds Custom CSS to the WordPress Dashboard\" target=\"_blank\">Jetpack 1.7 Adds Custom CSS to the WordPress Dashboard<\/a><\/li>\n<\/ol>\n<p>Got the style-sheet open? Good, let&#8217;s start by making our test widget really stand out from the others in the sidebar by giving it different border and background colors. Add the following to your style-sheet:<\/p>\n<pre>\r\n#text-5 {\r\n  border: 1px solid #000000;\r\n  background: #999900;\r\n}\r\n<\/pre>\n<p>You should see something like the image below. Go ahead and play around with the border thickness, border color and background color until you get it looking the way you want.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2012\/08\/text-widget-bg.png\" alt=\"WordPress Widgets - Screenshot of a test widget 2\" title=\"WordPress Widgets -  Custom styling 2\" width=\"261\" height=\"373\" class=\"aligncenter size-full wp-image-95636\" \/><\/p>\n<p>We can also see that the image we added from Flickr.com isn&#8217;t quite right for our sidebar (it&#8217;s preset in the embed code at 240&#215;161 pixels). We could <em>cheat <\/em>and modify the dimensions directly in the embed code but, as we&#8217;re pretending this widget is generated by a plugin, we won&#8217;t do that here. So, here&#8217;s an easy way to ensure that any images that appear in our customized widget fit just right:<\/p>\n<pre>\r\n#text-5 img {\r\n  width:100%;\r\n  height:auto;\r\n}\r\n<\/pre>\n<p>The <em>width:100%;<\/em> declaration ensures that larger images will be resized to fit exactly the space available in their parent container. The <em>height:auto;<\/em> ensures that the height will remain proportionate to the original. Now you should see something like this:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2012\/08\/text-widget-bg2.png\" alt=\"WordPress Widgets - Screenshot of a test widget 3\" title=\"WordPress Widgets -  Custom styling 3\" width=\"261\" height=\"365\" class=\"aligncenter size-full wp-image-95637\" \/><\/p>\n<p>The color of the headings isn&#8217;t right either for the background color we added earlier, so let&#8217;s make them easier to read by adding the following to our style-sheet:<\/p>\n<pre>\r\n#text-5 h3, #text-5 h4 {\r\n  color:#ffffff;\r\n}\r\n<\/pre>\n<p>That would give you something like this:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2012\/08\/text-widget-bg3.png\" alt=\"WordPress Widgets - Screenshot of a test widget 4\" title=\"WordPress Widgets -  Custom styling 4\" width=\"259\" height=\"364\" class=\"aligncenter size-full wp-image-95638\" \/><\/p>\n<p>You can see in the examples above how easy it can be to add custom styles to your WordPress widgets simply by targeting the ID of the widget (#text-5 in our examples), then appending the appropriate elements to the selector. Up til now, we&#8217;ve been customizing the look of the widget content. Now, let&#8217;s shift things into another gear and change <strong>how <\/strong>the content is displayed; the layout.<\/p>\n\n<h3>Changing the widget content layout<\/h3>\n<p>For this part of our exercise, we&#8217;ll be using some <em>display<\/em> and\/or <em>float <\/em>properties. (For more on <em>display, float<\/em> and other style rules, see the helpful links at the end of this article.) Let&#8217;s first add a bit more content to our test widget so we can really see the impact of our changes. To simulate multiple entries generated by a plugin, we&#8217;ll copy what we already have, and add it in again with a horizontal rule between the 2 entries. Change the content in your test widget to the following and <strong>Save<\/strong>.<\/p>\n<pre>\r\n&lt;div class=\"my-entry\"&gt;\r\n&lt;div class=\"my-title\"&gt;\r\n&lt;h4&gt;This is the title&lt;\/h4&gt;\r\n&lt;\/div&gt;\r\n&lt;div class=\"my-image\"&gt;\r\n&lt;a href=\"http:\/\/www.flickr.com\/photos\/kevinmcmanus\/3956021578\/\" title=\"Thatched roof cottage by K Mick, on Flickr\"&gt;&lt;img src=\"https:\/\/farm3.staticflickr.com\/2431\/3956021578_8579b5943c_m.jpg\" width=\"240\" height=\"161\" alt=\"Thatched roof cottage\"&gt;&lt;\/a&gt;\r\n&lt;\/div&gt;\r\n&lt;div class=\"my-content\"&gt;\r\nHere is a bit of content to describe what's going on here. This could be some automatically generated text like a post excerpt, rss feed, or text you enter yourself in a widget like this one.\r\n&lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;hr\/&gt;\r\n&lt;div class=\"my-entry\"&gt;\r\n&lt;div class=\"my-title\"&gt;\r\n&lt;h4&gt;This is the title&lt;\/h4&gt;\r\n&lt;\/div&gt;\r\n&lt;div class=\"my-image\"&gt;\r\n&lt;a href=\"http:\/\/www.flickr.com\/photos\/kevinmcmanus\/3956021578\/\" title=\"Thatched roof cottage by K Mick, on Flickr\"&gt;&lt;img src=\"https:\/\/farm3.staticflickr.com\/2431\/3956021578_8579b5943c_m.jpg\" width=\"240\" height=\"161\" alt=\"Thatched roof cottage\"&gt;&lt;\/a&gt;\r\n&lt;\/div&gt;\r\n&lt;div class=\"my-content\"&gt;\r\nHere is a bit of content to describe what's going on here. This could be some automatically generated text like a post excerpt, rss feed, or text you enter yourself in a widget like this one.\r\n&lt;\/div&gt;\r\n&lt;\/div&gt;\r\n<\/pre>\n<p>You should now see something like this on your site:<\/p>\n<p><a rel=\"lightbox[95232]\" class=\"blog-thumbnail\" href=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2012\/08\/text-widget-bg4.png\" target=\"_blank\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2012\/08\/text-widget-bg4-113x300.png\" alt=\"WordPress Widgets - Screenshot of a test widget 5\" title=\"WordPress Widgets -  Custom styling 5\" width=\"113\" height=\"300\" class=\"aligncenter size-medium wp-image-95639\" \/><\/a><\/p>\n<p>Let&#8217;s try simply making the images half the width of the widget, and get the content to wrap around them. To do so, we&#8217;ll style the parent containers of the images. As we have already added a width of 100% to our images, they will automatically resize to fit their container. Most widget content generated by plugins will have images wrapped in some kind of container. In our test widget, the image container is <em>div class=&#8221;my-image&#8221;<\/em>. So to style that container, we can add the following to our style-sheet:<\/p>\n<pre>\r\n#text-5 .my-image {\r\n  float:left;\r\n  margin:0 1em 0 0;\r\n  width:50%;\r\n}\r\n<\/pre>\n<p>Now you should see something like this on your site:<\/p>\n<p><a rel=\"lightbox[95232]\" class=\"blog-thumbnail\" href=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2012\/08\/text-widget-bg5.png\" target=\"_blank\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2012\/08\/text-widget-bg5-157x300.png\" alt=\"WordPress Widgets - Screenshot of a test widget 6\" title=\"WordPress Widgets -  Custom styling 6\" width=\"157\" height=\"300\" class=\"aligncenter size-medium wp-image-95806\" \/><\/a><\/p>\n<p>If you&#8217;d prefer a layout with images to the right, change the code you just added to the following and you&#8217;ll see something much like the image below:<\/p>\n<pre>\r\n#text-5 .my-image {\r\n  float:right;\r\n  margin:0 0 0 1em;\r\n  width:50%;\r\n}\r\n<\/pre>\n<p><a rel=\"lightbox[95232]\" class=\"blog-thumbnail\" href=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2012\/08\/text-widget-bg6.png\" target=\"_blank\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2012\/08\/text-widget-bg6-155x300.png\" alt=\"WordPress Widgets - Screenshot of a test widget 7\" title=\"WordPress Widgets -  Custom styling 7\" width=\"155\" height=\"300\" class=\"aligncenter size-medium wp-image-95808\" \/><\/a><\/p>\n<p>In some instances, we may want the content of our WordPress widgets to display in distinct columns. The <em>display <\/em>property allows us to do that by mimicking good ol&#8217; tables and table cells. First, we should tell our widget that we want its content to behave like a table by adding <em>display:table;<\/em> to it. The style rule for your test widget should now look like this:<\/p>\n<pre>\r\n#text-5 {\r\n  border: 1px solid #000000;\r\n  background: #999900;\r\n  display:table;\r\n}\r\n<\/pre>\n<p>Next, we&#8217;ll add a style rule to the <em>my-image<\/em> container, and create a rule for the <em>my-content<\/em> container so they behave like table cells:<\/p>\n<pre>\r\n#text-5 .my-image {\r\n  display:table-cell;\r\n  float:left;\r\n  margin:0 1em 0 0;\r\n  width:50%;\r\n}\r\n#text-5 .my-content {\r\n  display:table-cell;\r\n}\r\n<\/pre>\n<p>Viewing your site, your test widget should now look much like this:<\/p>\n<p><a rel=\"lightbox[95232]\" class=\"blog-thumbnail\" href=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2012\/09\/text-widget-bg7.png\" target=\"_blank\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2012\/09\/text-widget-bg7-115x300.png\" alt=\"WordPress Widgets - Screenshot of a test widget 8\" title=\"WordPress Widgets -  Custom styling 8\" width=\"115\" height=\"300\" class=\"aligncenter size-medium wp-image-95935\" \/><\/a><\/p>\n<p>Evidently, this technique may not be ideally suited to WordPress widgets in narrow sidebars where there&#8217;s a lot of text beside a single image in each entry. However, it can be useful to re-arrange text, links or images in wider widget areas such as full-width footer widgets.<\/p>\n\n<h3>Hiding some of the widget content<\/h3>\n<p>There are times when a widget displays a bunch of information in each entry, some of which we don&#8217;t necessarily need or want. Depending on the plugin used, there may not be a built-in setting or option available to hide or display certain elements. There&#8217;s an easy solution to that with the <em>display <\/em>property.<\/p>\n<p>Let&#8217;s say we want to remove the text from each entry in our test widget and show only the images. We would simply apply <em>display:none;<\/em> to the appropriate container. The container for our test widget text is <em>my-content<\/em>, so the style rule would look like the following (you&#8217;ll need to remove the style rules for the <em>my-image<\/em> container to get the images back to full-width for this exercise):<\/p>\n<pre>\r\n#text-5 .my-content {\r\n  display:none;\r\n}\r\n<\/pre>\n<p>To hide the images and display only the text, we would apply the display rule to the image container instead like so:<\/p>\n<pre>\r\n#text-5 .my-image {\r\n  display:none;\r\n}\r\n<\/pre>\n<p>Depending on what we&#8217;ve hidden, our test widget would now look like one of the images below:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2012\/09\/text-widget-bg8.png\" alt=\"WordPress Widgets - Screenshot of a test widget 9\" title=\"WordPress Widgets -  Custom styling 9\" width=\"790\" height=\"521\" class=\"aligncenter size-full wp-image-95938\" \/><\/p>\n<h3>Applying custom styles to groups of widgets<\/h3>\n<p>Let&#8217;s say we want all the widgets in our sidebar to inherit the same custom styling. Rather than preceding style rules with the ID of a specific widget (such as <em>#text-5<\/em> from our test widget), we would precede them with the ID of the sidebar and target the widgets like so:<\/p>\n<pre>\r\n#sidebar .widget {\r\n<em> style rules here... <\/em>\r\n}\r\n<\/pre>\n<p>If we want to apply the same rules to all our sidebar widget images, our CSS would then look like this:<\/p>\n<pre>\r\n#sidebar .widget img {\r\n<em> style rules here... <\/em>\r\n}\r\n<\/pre>\n<p>To apply custom CSS to all the widgets in our site&#8217;s footer instead, we would target the footer ID like so:<\/p>\n<pre>\r\n#footer .widget {\r\n<em> style rules here... <\/em>\r\n}\r\n<\/pre>\n<p>To apply custom rules to ALL the widgets on our site, we would simply target the widget class like so:<\/p>\n<pre>\r\n.widget {\r\n<em> style rules here... <\/em>\r\n}\r\n<\/pre>\n<h3>Tips to override stubborn theme styles<\/h3>\n<p>Depending on the complexity of your chosen theme&#8217;s style-sheet, custom styles for your WordPress widgets may not <em>&#8220;take&#8221;<\/em> immediately. In other words, some built-in theme styles may take precedence and override your custom stuff. If this happens, there are 2 ways to ensure that your custom styles override whatever may be present in your theme&#8217;s style-sheet.<\/p>\n<ol>\n<li>Increase the specificity of the selector. This is by far the preferred method. To help get you going on CSS specificity, here&#8217;s a <a href=\"http:\/\/www.htmldog.com\/guides\/cssadvanced\/specificity\/\" title=\"HTML Dog - CSS Specificity\" target=\"_blank\">simple tutorial<\/a>, and a <a href=\"http:\/\/www.w3.org\/TR\/CSS21\/cascade.html\" title=\"W3.org - CSS Specificity\" target=\"_blank\">complete one<\/a>.<\/li>\n<li>Use the <em>!important<\/em> rule. Be careful though, this should be used <strong>only <\/strong>if absolutely necessary. See <a href=\"http:\/\/css-tricks.com\/when-using-important-is-the-right-choice\/\" title=\"When Using !important is The Right Choice\" target=\"_blank\">this article<\/a> at CSS-Tricks.com for a great write-up on how <em>!important<\/em> can be used wisely.<\/li>\n<\/ol>\n<h3>Other helpful links<\/h3>\n<ul>\n<li><a href=\"http:\/\/www.quirksmode.org\/css\/display.html\" title=\"Quirksmode.org - The display declaration\" target=\"_blank\">All about the <em>display <\/em>property<\/a><\/li>\n<li><a href=\"http:\/\/www.maxdesign.com.au\/css\/\" title=\"maxdesign.com - Tutorials\" target=\"_blank\">A tutorial website dedicated to lists, selectors and the <em>float <\/em>property.<\/a><\/li>\n<\/ul>\n<p>As always, I hope you find use for the tips in this article. If you&#8217;ve created a really cool style for your WordPress widgets and want to show it off, go ahead and leave a comment below with a link. I&#8217;d love to see your stuff! If you need a hand with a puzzle, ask away in the comments too. Thanks for reading!<\/p>\n<p>Photo credit: <a href=\"http:\/\/www.flickr.com\/photos\/kevinmcmanus\/3956021578\/\" title=\"Flickr.com - Thatched roof cottage\" target=\"_blank\">Flickr.com &#8211; Thatched roof cottage<\/a> (used in our test widget sample code).<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Some simple tips to get your WordPress widgets looking the way you want them to.<\/p>\n","protected":false},"author":28888,"featured_media":95942,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"blog_reading_time":"","wds_primary_category":0,"wds_primary_tutorials_categories":0,"footnotes":""},"categories":[263],"tags":[52],"tutorials_categories":[],"class_list":["post-95232","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-widgets"],"_links":{"self":[{"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/posts\/95232","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/users\/28888"}],"replies":[{"embeddable":true,"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/comments?post=95232"}],"version-history":[{"count":0,"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/posts\/95232\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/media\/95942"}],"wp:attachment":[{"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/media?parent=95232"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/categories?post=95232"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/tags?post=95232"},{"taxonomy":"tutorials_categories","embeddable":true,"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/tutorials_categories?post=95232"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}