{"id":44882,"date":"2019-07-25T16:59:47","date_gmt":"2019-07-25T21:59:47","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=44882"},"modified":"2023-08-15T18:13:41","modified_gmt":"2023-08-15T22:13:41","slug":"how-to-add-estimated-reading-time-to-wordpress-posts-with-php","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-add-estimated-reading-time-to-wordpress-posts-with-php\/","title":{"rendered":"How To Add Estimated Reading Time To WordPress Posts (With PHP)"},"content":{"rendered":"\n<p> The new blogging trend is letting your readers know how long a post will take them to read. You can easily add read time to a post using a plugin. But, there are just too many blog posts and tutorials out there that give you a plugin solution when you really need a <a href=\"https:\/\/www.inmotionhosting.com\/php-hosting\">PHP<\/a> solution. Adding too many plugins to your site can slow it down and introduce security hazards. So, whenever possible, you should do your own coding or hire a developer for a longer-term solution. <\/p>\n\n\n\n<p class=\"alert alert-info\">If you&#8217;re looking for an all-in-one self-hosted solution, be sure to check out our <a href=\"https:\/\/www.inmotionhosting.com\/wordpress-hosting\">WordPress hosting<\/a> packages.\n\n<\/p>\n\n\n\n<p>\nIn this article, you will:\n<\/p>\n\n\n\n<div id=\"text-table-of-contents\">\n<ul>\n<li><a href=\"#child-theme\">Learn why you need to use a child theme<\/a><\/li>\n<li><a href=\"#theme-files\">Edit your theme files<\/a><\/li>\n<li><a href=\"#add-reading-time-php\">Add reading time using PHP<\/a><\/li>\n<\/ul>\n<\/div>\n\n\n\n<div id=\"outline-container-org36535ca\" class=\"outline-2\">\n<h2 id=\"child-theme\"><a id=\"org36535ca\"><\/a>Using a WordPress Child Theme<\/h2>\n<div class=\"outline-text-2\" id=\"text-child-theme\">\n<p class=\"alert alert-warning\">If you&#8217;re using a custom theme that was built for your site, this does not apply to your case.<\/p>\n\n<p>\nA WordPress child theme lets you edit your current theme and save changes that won&#8217;t be overwritten when a theme update is released. If you are not using a child theme to make edits, you are best advised to follow the <a href=\"https:\/\/developer.wordpress.org\/themes\/advanced-topics\/child-themes\/\">WordPress guidelines for creating child themes<\/a>.\n<\/p>\n\n<p>\nBasically, child themes are the safest way to edit your theme files and retain the changes you&#8217;ve made.\n<\/p>\n<\/div>\n<\/div>\n\n\n\n<div id=\"outline-container-orgd7b3189\" class=\"outline-2\">\n<h2 id=\"theme-files\"><a id=\"orgd7b3189\"><\/a>Editing Your Theme Files<\/h2>\n<div class=\"outline-text-2\" id=\"text-theme-files\">\n<p>\nOnce you&#8217;re sure that you can safely edit your theme files, you can easily do so using the WordPress theme editor. You will be editing the &#8220;Single Page&#8221; template, which controls only posts and not pages.\n<\/p>\n\n<ol class=\"org-ol\">\n<li><a href=\"\/support\/edu\/wordpress\/logging-into-wordpress-dashboard\/\">Log into your WordPress Dashboard<\/a><\/li>\n<li>Select <b>Theme Editor<\/b> under <i>Appearance<\/i><\/li>\n<li>Choose your theme&#8217;s single post template under <i>Theme Files<\/i> on the right side panel<sup><a id=\"fnr.1\" class=\"footref\" href=\"#fn.1\">1<\/a><\/sup><\/li>\n<\/ol>\n\n<p>\nNow, any code you add to the single post theme template will affect all blog posts on your site.\n<\/p>\n<\/div>\n<\/div>\n\n\n\n<div id=\"outline-container-org0fc72c7\" class=\"outline-2\">\n<h2 id=\"add-reading-time-php\"><a id=\"org0fc72c7\"><\/a>How To Add Reading Time Using PHP<\/h2>\n<div class=\"outline-text-2\" id=\"text-add-reading-time-php\">\n<p>\nUnless you are already familiar with PHP code, you&#8217;ll want to note that any code within PHP tags (<code>&lt;?php ?&gt;<\/code>) will be evaluated differently than HTML. The code snippet provided here to estimate your post reading time must be placed <i>outside<\/i> of PHP tags.\n<\/p>\n\n<p>\nPlace this code in your template file wherever you want reading time to appear:\n<\/p>\n\n<div class=\"org-src-container\">\n<pre class=\"src src-php\"><span style=\"color: #483d8b;\">&lt;?php<\/span>\n$<span style=\"color: #a0522d;\">mycontent<\/span> = $<span style=\"color: #a0522d;\">post<\/span>-<span style=\"color: #008b8b;\">&gt;<\/span><span style=\"color: #a0522d;\">post_content<\/span>; <span style=\"color: #b22222;\">\/\/ <\/span><span style=\"color: #b22222;\">wordpress users only<\/span>\n$<span style=\"color: #a0522d;\">word<\/span> = <span style=\"color: #000000; background-color: #ffffff;\">str_word_count<\/span>(<span style=\"color: #000000; background-color: #ffffff;\">strip_tags<\/span>($<span style=\"color: #a0522d;\">mycontent<\/span>));\n$<span style=\"color: #a0522d;\">m<\/span> = <span style=\"color: #000000; background-color: #ffffff;\">floor<\/span>($<span style=\"color: #a0522d;\">word<\/span> \/ <span style=\"color: #000000; background-color: #ffffff;\">200<\/span>);\n$<span style=\"color: #a0522d;\">s<\/span> = <span style=\"color: #000000; background-color: #ffffff;\">floor<\/span>($<span style=\"color: #a0522d;\">word<\/span> % <span style=\"color: #000000; background-color: #ffffff;\">200<\/span> \/ (<span style=\"color: #000000; background-color: #ffffff;\">200<\/span> \/ <span style=\"color: #000000; background-color: #ffffff;\">60<\/span>));\n$<span style=\"color: #a0522d;\">est<\/span> = $<span style=\"color: #a0522d;\">m<\/span> . <span style=\"color: #8b2252;\">' minute'<\/span> . ($<span style=\"color: #a0522d;\">m<\/span> == <span style=\"color: #000000; background-color: #ffffff;\">1<\/span> ? <span style=\"color: #8b2252;\">''<\/span> : <span style=\"color: #8b2252;\">'s'<\/span>) . <span style=\"color: #8b2252;\">', '<\/span> . $<span style=\"color: #a0522d;\">s<\/span> . <span style=\"color: #8b2252;\">' second'<\/span> . ($<span style=\"color: #a0522d;\">s<\/span> == <span style=\"color: #000000; background-color: #ffffff;\">1<\/span> ? <span style=\"color: #8b2252;\">''<\/span> : <span style=\"color: #8b2252;\">'s'<\/span>);\n<span style=\"color: #483d8b;\">?&gt;<\/span>\n\n<span style=\"color: #008b8b;\">&lt;p&gt;<\/span><span style=\"color: #ff0000; font-weight: bold;\">Estimated<\/span> <span style=\"color: #ff0000; font-weight: bold;\">reading<\/span> <span style=\"color: #ff0000; font-weight: bold;\">time<\/span>: <span style=\"color: #483d8b;\">&lt;?php<\/span> <span style=\"color: #a020f0;\">echo<\/span> $<span style=\"color: #a0522d;\">est<\/span>; <span style=\"color: #483d8b;\">?&gt;<\/span><span style=\"color: #008b8b;\">&lt;\/p&gt;<\/span>\n<\/pre>\n<\/div>\n\n<p>\nThe above code snippet<sup><a id=\"fnr.2\" class=\"footref\" href=\"#fn.2\">2<\/a><\/sup> does all the calculation inside of PHP and then outputs the results in a basic HTML paragraph element. Feel free to update any of the settings, for example:\n<\/p>\n\n<ul class=\"org-ul\">\n<li>Update the paragraph text by changing &#8220;Estimated reading time&#8221; to any text you prefer, or erase it entirely<\/li>\n<li>Change the estimated words per minute (200) to any value you think will be more appropriate for your readers<\/li>\n<li>If you&#8217;d rather not have a paragraph, change the HTML <code>&lt;p&gt;<\/code> tags to fit your preference<\/li>\n<\/ul>\n\n<p>\nAnd that&#8217;s all it takes to add real PHP reading time estimates to your site. No plugin required! Be sure to let us know if you have questions or comments.\n<\/p>\n<\/div>\n<\/div>\n\n\n\n<div id=\"footnotes\">\n<h2 class=\"footnotes\">Footnotes: <\/h2>\n<div id=\"text-footnotes\">\n\n<div class=\"footdef\"><sup><a id=\"fn.1\" class=\"footnum\" href=\"#fnr.1\">1<\/a><\/sup> <div class=\"footpara\">The location of this file may be different for different themes. Be sure to read your theme documentation for the exact location of this file. Or, contact the developer.<\/div><\/div>\n\n<div class=\"footdef\"><sup><a id=\"fn.2\" class=\"footnum\" href=\"#fnr.2\">2<\/a><\/sup> <div class=\"footpara\">Code snippet credit belongs to <a href=\"https:\/\/gist.github.com\/mynameispj\/3170442\">https:\/\/gist.github.com\/mynameispj\/3170442<\/a><\/div><\/div>\n\n\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>The new blogging trend is letting your readers know how long a post will take them to read. You can easily add read time to a post using a plugin. But, there are just too many blog posts and tutorials out there that give you a plugin solution when you really need a PHP solution.<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-add-estimated-reading-time-to-wordpress-posts-with-php\/\"> Read More ><\/a><\/p>\n","protected":false},"author":17,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4288,4325,56],"tags":[],"class_list":["post-44882","post","type-post","status-publish","format-standard","hentry","category-website","category-wordpress-hosting","category-wordpress"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How To Add Estimated Reading Time To WordPress Posts (With PHP)<\/title>\n<meta name=\"description\" content=\"Finally, learn how to add estimated reading time to WordPress posts with PHP. No plugin required! This complete guide walks you through step-by-step.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-add-estimated-reading-time-to-wordpress-posts-with-php\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Add Estimated Reading Time To WordPress Posts (With PHP)\" \/>\n<meta property=\"og:description\" content=\"Finally, learn how to add estimated reading time to WordPress posts with PHP. No plugin required! This complete guide walks you through step-by-step.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-add-estimated-reading-time-to-wordpress-posts-with-php\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-07-25T21:59:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-15T22:13:41+00:00\" \/>\n<meta name=\"author\" content=\"Christopher Maiorana\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Christopher Maiorana\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-add-estimated-reading-time-to-wordpress-posts-with-php\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-add-estimated-reading-time-to-wordpress-posts-with-php\/\"},\"author\":{\"name\":\"Christopher Maiorana\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\"},\"headline\":\"How To Add Estimated Reading Time To WordPress Posts (With PHP)\",\"datePublished\":\"2019-07-25T21:59:47+00:00\",\"dateModified\":\"2023-08-15T22:13:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-add-estimated-reading-time-to-wordpress-posts-with-php\/\"},\"wordCount\":535,\"commentCount\":5,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"articleSection\":[\"Website\",\"WordPress Hosting\",\"WordPress Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-add-estimated-reading-time-to-wordpress-posts-with-php\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-add-estimated-reading-time-to-wordpress-posts-with-php\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-add-estimated-reading-time-to-wordpress-posts-with-php\/\",\"name\":\"How To Add Estimated Reading Time To WordPress Posts (With PHP)\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2019-07-25T21:59:47+00:00\",\"dateModified\":\"2023-08-15T22:13:41+00:00\",\"description\":\"Finally, learn how to add estimated reading time to WordPress posts with PHP. No plugin required! This complete guide walks you through step-by-step.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-add-estimated-reading-time-to-wordpress-posts-with-php\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-add-estimated-reading-time-to-wordpress-posts-with-php\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-add-estimated-reading-time-to-wordpress-posts-with-php\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Add Estimated Reading Time To WordPress Posts (With PHP)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\",\"name\":\"Christopher Maiorana\",\"description\":\"Christopher Maiorana joined the InMotion community team in 2015 and regularly dispenses tips and tricks in the Support Center, Community Q&A, and the InMotion Hosting Blog.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/chris-m-4623144b\/\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/christopherm\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Add Estimated Reading Time To WordPress Posts (With PHP)","description":"Finally, learn how to add estimated reading time to WordPress posts with PHP. No plugin required! This complete guide walks you through step-by-step.","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:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-add-estimated-reading-time-to-wordpress-posts-with-php\/","og_locale":"en_US","og_type":"article","og_title":"How To Add Estimated Reading Time To WordPress Posts (With PHP)","og_description":"Finally, learn how to add estimated reading time to WordPress posts with PHP. No plugin required! This complete guide walks you through step-by-step.","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-add-estimated-reading-time-to-wordpress-posts-with-php\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2019-07-25T21:59:47+00:00","article_modified_time":"2023-08-15T22:13:41+00:00","author":"Christopher Maiorana","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Christopher Maiorana","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-add-estimated-reading-time-to-wordpress-posts-with-php\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-add-estimated-reading-time-to-wordpress-posts-with-php\/"},"author":{"name":"Christopher Maiorana","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f"},"headline":"How To Add Estimated Reading Time To WordPress Posts (With PHP)","datePublished":"2019-07-25T21:59:47+00:00","dateModified":"2023-08-15T22:13:41+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-add-estimated-reading-time-to-wordpress-posts-with-php\/"},"wordCount":535,"commentCount":5,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"articleSection":["Website","WordPress Hosting","WordPress Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-add-estimated-reading-time-to-wordpress-posts-with-php\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-add-estimated-reading-time-to-wordpress-posts-with-php\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-add-estimated-reading-time-to-wordpress-posts-with-php\/","name":"How To Add Estimated Reading Time To WordPress Posts (With PHP)","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2019-07-25T21:59:47+00:00","dateModified":"2023-08-15T22:13:41+00:00","description":"Finally, learn how to add estimated reading time to WordPress posts with PHP. No plugin required! This complete guide walks you through step-by-step.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-add-estimated-reading-time-to-wordpress-posts-with-php\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-add-estimated-reading-time-to-wordpress-posts-with-php\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-add-estimated-reading-time-to-wordpress-posts-with-php\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How To Add Estimated Reading Time To WordPress Posts (With PHP)"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f","name":"Christopher Maiorana","description":"Christopher Maiorana joined the InMotion community team in 2015 and regularly dispenses tips and tricks in the Support Center, Community Q&A, and the InMotion Hosting Blog.","sameAs":["https:\/\/www.linkedin.com\/in\/chris-m-4623144b\/"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/christopherm\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/44882","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/17"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=44882"}],"version-history":[{"count":19,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/44882\/revisions"}],"predecessor-version":[{"id":106044,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/44882\/revisions\/106044"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=44882"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=44882"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=44882"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}