{"id":8738,"date":"2019-12-11T11:30:58","date_gmt":"2019-12-11T11:30:58","guid":{"rendered":"https:\/\/www.milesweb.in\/hosting-faqs\/?p=8738"},"modified":"2022-02-15T14:52:51","modified_gmt":"2022-02-15T09:22:51","slug":"discover-the-steps-to-duplicate-wordpress-pages-or-posts","status":"publish","type":"post","link":"https:\/\/www.milesweb.in\/hosting-faqs\/discover-the-steps-to-duplicate-wordpress-pages-or-posts\/","title":{"rendered":"Discover the Steps to Duplicate WordPress Pages or Posts"},"content":{"rendered":"<p><strong>Watch this video for a step by step process on how to clone a post in WordPress<\/strong><\/p>\n<div class=\"youtube-video\" style=\"border: 1px solid #ddd;\"><iframe src=\"https:\/\/www.youtube.com\/embed\/uzDm5vRV_lw\" allowfullscreen=\"allowfullscreen\"><\/iframe><\/div>\n<p>When you create a duplicate of your existing WordPress posts or pages, it can be used in several situations. It can be used as a template for future posts or a reference while redesigning your website.<\/p>\n<p>Fortunately, you will get many ways to clone a post or page in WordPress. In this tutorial, you will get different methods for the same, so keep on reading!<\/p>\n<h2>Steps to Duplicate Pages or Posts with WordPress Plugin<\/h2>\n<p>You can easily create a copy of a page or post just by using a plugin. After you activate the plugin, you can clone the pages or posts in just one click.<\/p>\n<p>Below are some of the best WordPress plugins to duplicate your posts and pages as well as their usage:<\/p>\n<h3>Duplicate Post Plugin<\/h3>\n<p><strong>Duplicate Post<\/strong> plugin is one of the best options for this. It not only copies the content, but also duplicates the comments, slug, menu order, and much more!<\/p>\n<p>Moreover, you can add title prefix or a suffix, which will help you know the difference between the original and copy.<\/p>\n<p>Suppose you set <strong>\u201cCopy of\u201d<\/strong> as the title prefix. Then you duplicate a post titled<strong> \u201cWhat is WordPress,\u201d<\/strong> the duplicate name will appear as <strong>\u201cCopy of What is WordPress.\u201d<\/strong><\/p>\n<p>Below are the simple steps to clone your WordPress posts or pages using Duplicate Post:<\/p>\n<ol>\n<li>Install the plugin and activate it.<\/li>\n<li>In your WordPress dashboard, click on <strong>Pages -&gt; All Pages<\/strong> (to clone a page) or<strong> Post -&gt; All Posts<\/strong> (to clone a post).<\/li>\n<li>Go to the page or post you want to clone, and you will see two new options there \u2014 <strong>Clone and New Draft<\/strong>.<\/li>\n<li>To duplicate the selected post, click <strong>Clone<\/strong> or click on <strong>New Draft<\/strong> to create a cloned version of the selected post and open it in the post editor.<\/li>\n<\/ol>\n<p><strong>Related: <a href=\"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-create-a-page-in-wordpress\/\" target=\"_blank\" rel=\"noopener\">How to Create a Page in WordPress?<\/a><\/strong><\/p>\n<h3>Duplicate Page and Post<\/h3>\n<p>With <strong>Duplicate Page and Post<\/strong> plugin, you can clone WordPress pages and posts quickly. The plugin duplicates a page or post without changing its title, content, or style.<\/p>\n<p>Even a newbie can use this plugin easily. Follow the below steps:<\/p>\n<ol>\n<li>Once the plugin is installed and activated, go to the <strong>All Pages<\/strong> or <strong>All Posts<\/strong> menu, based on what you want to duplicate.<\/li>\n<li>Go to the post or page you want to clone and click on <strong>Duplicate<\/strong>.<\/li>\n<li>The cloned post or page will appear as a new draft with the same name as the original. Then to edit the content, open the copy of it.<\/li>\n<\/ol>\n<h3>Post Duplicator<\/h3>\n<p>With <strong>Post Duplicator<\/strong>, you can create an exact copy of the selected post without changing the custom fields and custom taxonomies too.<\/p>\n<p>Below are the steps to duplicate a WordPress page or post using Post Duplicator plugin:<\/p>\n<p>1. Install the<strong> Post Duplicator<\/strong> plugin and activate it.<br \/>\n2. Go to the post or the page you want to duplicate, and click <strong>Duplicate Post<\/strong> or <strong>Duplicate Page<\/strong>.<\/p>\n<p>You can customize some settings for the duplicated posts. Navigate to <strong>Tools -&gt; Post Duplicator<\/strong> and set the post status (<strong>published, draft, or same as the original<\/strong>), post type, and post date. You can also adjust the duplicate\u2019s title and slug.<\/p>\n<p><strong>Related: <a href=\"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-save-a-wordpress-post-or-page-as-a-draft\/\" target=\"_blank\" rel=\"noopener\">How to save a WordPress post or page as a draft?<\/a><\/strong><\/p>\n<h2>Duplicating WordPress Page or Post Without Plugins<\/h2>\n<p>Apart from using plugins, you can also change some codes to duplicate WordPress pages and posts. Though it sounds tough, it is actually quite simple.<\/p>\n<p>We recommend you to backup your website prior to editing any WordPress files.<\/p>\n<p>The below code snippet will enable post duplication in WordPress:<\/p>\n<pre class=\"lang:default decode:true\">\/*\n* Function for post duplication. Dups appear as drafts. User is redirected to the edit screen\n*\/\nfunction rd_duplicate_post_as_draft(){\nglobal $wpdb;\nif (! ( isset( $_GET['post']) || isset( $_POST['post']) || ( isset($_REQUEST['action']) &amp;&amp; 'rd_duplicate_post_as_draft' == $_REQUEST['action'] ) ) ) {\nwp_die('No post to duplicate has been supplied!');\n}\n\/*\n* Nonce verification\n*\/\nif ( !isset( $_GET['duplicate_nonce'] ) || !wp_verify_nonce( $_GET['duplicate_nonce'], basename( __FILE__ ) ) )\nreturn;\n\/*\n* get the original post id\n*\/\n$post_id = (isset($_GET['post']) ? absint( $_GET['post'] ) : absint( $_POST['post'] ) );\n\/*\n* and all the original post data then\n*\/\n$post = get_post( $post_id );\n\/*\n* if you don't want current user to be the new post author,\n* then change next couple of lines to this: $new_post_author = $post-&gt;post_author;\n*\/\n$current_user = wp_get_current_user();\n$new_post_author = $current_user-&gt;ID;\n\/*\n* if post data exists, create the post duplicate\n*\/\nif (isset( $post ) &amp;&amp; $post != null) {\n\/*\n* new post data array\n*\/\n$args = array(\n'comment_status' =&gt; $post-&gt;comment_status,\n'ping_status' =&gt; $post-&gt;ping_status,\n'post_author' =&gt; $new_post_author,\n'post_content' =&gt; $post-&gt;post_content,\n'post_excerpt' =&gt; $post-&gt;post_excerpt,\n'post_name' =&gt; $post-&gt;post_name,\n'post_parent' =&gt; $post-&gt;post_parent,\n'post_password' =&gt; $post-&gt;post_password,\n'post_status' =&gt; 'draft',\n'post_title' =&gt; $post-&gt;post_title,\n'post_type' =&gt; $post-&gt;post_type,\n'to_ping' =&gt; $post-&gt;to_ping,\n'menu_order' =&gt; $post-&gt;menu_order\n);\n\/*\n* insert the post by wp_insert_post() function\n*\/\n$new_post_id = wp_insert_post( $args );\n\/*\n* get all current post terms ad set them to the new post draft\n*\/\n$taxonomies = get_object_taxonomies($post-&gt;post_type); \/\/ returns array of taxonomy names for post type, ex array(\"category\", \"post_tag\");\nforeach ($taxonomies as $taxonomy) {\n$post_terms = wp_get_object_terms($post_id, $taxonomy, array('fields' =&gt; 'slugs'));\nwp_set_object_terms($new_post_id, $post_terms, $taxonomy, false);\n}\n\n\/*\n* duplicate all post meta just in two SQL queries\n*\/\n$post_meta_infos = $wpdb-&gt;get_results(\"SELECT meta_key, meta_value FROM $wpdb-&gt;postmeta WHERE post_id=$post_id\");\nif (count($post_meta_infos)!=0) {\n$sql_query = \"INSERT INTO $wpdb-&gt;postmeta (post_id, meta_key, meta_value) \";\nforeach ($post_meta_infos as $meta_info) {\n$meta_key = $meta_info-&gt;meta_key;\nif( $meta_key == '_wp_old_slug' ) continue;\n$meta_value = addslashes($meta_info-&gt;meta_value);\n$sql_query_sel[]= \"SELECT $new_post_id, '$meta_key', '$meta_value'\";\n}\n$sql_query.= implode(\" UNION ALL \", $sql_query_sel);\n$wpdb-&gt;query($sql_query);\n}\n\/*\n* finally, redirect to the edit post screen for the new draft\n*\/\nwp_redirect( admin_url( 'post.php?action=edit&amp;post=' . $new_post_id ) );\nexit;\n} else {\nwp_die('Post creation failed, could not find original post: ' . $post_id);\n}\n}\nadd_action( 'admin_action_rd_duplicate_post_as_draft', 'rd_duplicate_post_as_draft' );\n\/*\n* Add the duplicate link to action list for post_row_actions\n*\/\nfunction rd_duplicate_post_link( $actions, $post ) {\nif (current_user_can('edit_posts')) {\n$actions['duplicate'] = 'Duplicate';\n}\nreturn $actions;\n}\nadd_filter( 'post_row_actions', 'rd_duplicate_post_link', 10, 2 );<\/pre>\n<p>This snippet will work only for duplicating posts. For duplicating the WordPress pages, you will need to replace the last line with the below code:<\/p>\n<pre class=\"lang:default decode:true \">add_filter('page_row_actions', 'rd_duplicate_post_link', 10, 2);<\/pre>\n<p>Just paste the code to your functions.php file. For this, you can use File Manager, FTP client, or inbuilt WordPress file editor.<\/p>\n<p>If you want to use WordPress file editor, go to <strong>Appearance -&gt; Theme Editor<\/strong>, and select <strong>Theme Functions<\/strong>.<\/p>\n<p>After successfully embedding the code above, you will see a <strong>Duplicate<\/strong> button in <strong>All Posts<\/strong> or <strong>All Pages<\/strong> menu.<\/p>\n<h3>Conclusion<\/h3>\n<p>This tutorial will surely answer all your questions about duplicating a post or page in WordPress. If you have any other tips or tricks for the same, you can share them in the comments below.<\/p>\n<p><script type=\"application\/ld+json\">{\n  \"@context\": \"http:\/\/schema.org\",\n  \"@type\": \"VideoObject\",\n  \"name\": \"How to Clone a Post in WordPress? | MilesWeb\",\n  \"description\": \"Here's an in-depth guide on how to clone a post in WordPress: https:\/\/www.milesweb.in\/hosting-faqs\/discover-the-steps-to-duplicate-wordpress-pages-or-posts\/ Give a thumbs up \ud83d\udc4d if you liked this video. Subscribe to our channel and get notified for all the latest videos. To know more about web hosting visit our website - https:\/\/www.milesweb.in\",\n  \"thumbnailUrl\": \"https:\/\/i.ytimg.com\/vi\/uzDm5vRV_lw\/default.jpg\",\n  \"uploadDate\": \"2020-10-31T09:31:42Z\",\n  \"duration\": \"PT2M37S\",\n  \"embedUrl\": \"https:\/\/www.youtube.com\/embed\/uzDm5vRV_lw\",\n  \"interactionCount\": \"4\"\n}<\/script><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Watch this video for a step by step process on how to clone a post in WordPress When you create a duplicate of your existing WordPress posts or pages, it can be used in several situations. It can be used as a template for future posts or a reference while redesigning your website. Fortunately, you [&hellip;]<\/p>\n","protected":false},"author":16,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[17],"tags":[1166,1167,78],"class_list":["post-8738","post","type-post","status-publish","format-standard","placeholder-for-hentry","category-wordpress-faq","tag-duplicate-wordpress-pages","tag-duplicate-wordpress-posts","tag-wordpress-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Discover the Steps to Duplicate WordPress Pages or Posts<\/title>\n<meta name=\"description\" content=\"The article reveals the steps to duplicate WordPress pages or posts.\" \/>\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.milesweb.in\/hosting-faqs\/discover-the-steps-to-duplicate-wordpress-pages-or-posts\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Discover the Steps to Duplicate WordPress Pages or Posts\" \/>\n<meta property=\"og:description\" content=\"The article reveals the steps to duplicate WordPress pages or posts.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.milesweb.in\/hosting-faqs\/discover-the-steps-to-duplicate-wordpress-pages-or-posts\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Hosting FAQs by MilesWeb\" \/>\n<meta property=\"article:published_time\" content=\"2019-12-11T11:30:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-02-15T09:22:51+00:00\" \/>\n<meta name=\"author\" content=\"Pallavi Godse\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Pallavi Godse\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/discover-the-steps-to-duplicate-wordpress-pages-or-posts\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/discover-the-steps-to-duplicate-wordpress-pages-or-posts\/\"},\"author\":{\"name\":\"Pallavi Godse\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/7e3952607fa9eb4e82fea9f7cad9c945\"},\"headline\":\"Discover the Steps to Duplicate WordPress Pages or Posts\",\"datePublished\":\"2019-12-11T11:30:58+00:00\",\"dateModified\":\"2022-02-15T09:22:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/discover-the-steps-to-duplicate-wordpress-pages-or-posts\/\"},\"wordCount\":742,\"commentCount\":0,\"keywords\":[\"duplicate wordpress pages\",\"duplicate wordpress posts\",\"WordPress\"],\"articleSection\":[\"WordPress FAQ\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.milesweb.in\/hosting-faqs\/discover-the-steps-to-duplicate-wordpress-pages-or-posts\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/discover-the-steps-to-duplicate-wordpress-pages-or-posts\/\",\"url\":\"https:\/\/www.milesweb.in\/hosting-faqs\/discover-the-steps-to-duplicate-wordpress-pages-or-posts\/\",\"name\":\"Discover the Steps to Duplicate WordPress Pages or Posts\",\"isPartOf\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#website\"},\"datePublished\":\"2019-12-11T11:30:58+00:00\",\"dateModified\":\"2022-02-15T09:22:51+00:00\",\"author\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/7e3952607fa9eb4e82fea9f7cad9c945\"},\"description\":\"The article reveals the steps to duplicate WordPress pages or posts.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/discover-the-steps-to-duplicate-wordpress-pages-or-posts\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.milesweb.in\/hosting-faqs\/discover-the-steps-to-duplicate-wordpress-pages-or-posts\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/discover-the-steps-to-duplicate-wordpress-pages-or-posts\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.milesweb.in\/hosting-faqs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Discover the Steps to Duplicate WordPress Pages or Posts\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#website\",\"url\":\"https:\/\/www.milesweb.in\/hosting-faqs\/\",\"name\":\"Web Hosting FAQs by MilesWeb\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.milesweb.in\/hosting-faqs\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/7e3952607fa9eb4e82fea9f7cad9c945\",\"name\":\"Pallavi Godse\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/3602d0ac1ab89332aea8205dcf474af4ff4eb319cfd584544038908cd5e4c966?s=96&d=blank&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/3602d0ac1ab89332aea8205dcf474af4ff4eb319cfd584544038908cd5e4c966?s=96&d=blank&r=g\",\"caption\":\"Pallavi Godse\"},\"description\":\"Pallavi is a Digital Marketing Executive at MilesWeb and has an experience of over 4 years in content development. She is interested in writing engaging content on business, technology, web hosting and other topics related to information technology.\",\"sameAs\":[\"https:\/\/www.milesweb.in\"],\"url\":\"https:\/\/www.milesweb.in\/hosting-faqs\/author\/pallavi\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Discover the Steps to Duplicate WordPress Pages or Posts","description":"The article reveals the steps to duplicate WordPress pages or posts.","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.milesweb.in\/hosting-faqs\/discover-the-steps-to-duplicate-wordpress-pages-or-posts\/","og_locale":"en_US","og_type":"article","og_title":"Discover the Steps to Duplicate WordPress Pages or Posts","og_description":"The article reveals the steps to duplicate WordPress pages or posts.","og_url":"https:\/\/www.milesweb.in\/hosting-faqs\/discover-the-steps-to-duplicate-wordpress-pages-or-posts\/","og_site_name":"Web Hosting FAQs by MilesWeb","article_published_time":"2019-12-11T11:30:58+00:00","article_modified_time":"2022-02-15T09:22:51+00:00","author":"Pallavi Godse","twitter_misc":{"Written by":"Pallavi Godse","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/discover-the-steps-to-duplicate-wordpress-pages-or-posts\/#article","isPartOf":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/discover-the-steps-to-duplicate-wordpress-pages-or-posts\/"},"author":{"name":"Pallavi Godse","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/7e3952607fa9eb4e82fea9f7cad9c945"},"headline":"Discover the Steps to Duplicate WordPress Pages or Posts","datePublished":"2019-12-11T11:30:58+00:00","dateModified":"2022-02-15T09:22:51+00:00","mainEntityOfPage":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/discover-the-steps-to-duplicate-wordpress-pages-or-posts\/"},"wordCount":742,"commentCount":0,"keywords":["duplicate wordpress pages","duplicate wordpress posts","WordPress"],"articleSection":["WordPress FAQ"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.milesweb.in\/hosting-faqs\/discover-the-steps-to-duplicate-wordpress-pages-or-posts\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/discover-the-steps-to-duplicate-wordpress-pages-or-posts\/","url":"https:\/\/www.milesweb.in\/hosting-faqs\/discover-the-steps-to-duplicate-wordpress-pages-or-posts\/","name":"Discover the Steps to Duplicate WordPress Pages or Posts","isPartOf":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#website"},"datePublished":"2019-12-11T11:30:58+00:00","dateModified":"2022-02-15T09:22:51+00:00","author":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/7e3952607fa9eb4e82fea9f7cad9c945"},"description":"The article reveals the steps to duplicate WordPress pages or posts.","breadcrumb":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/discover-the-steps-to-duplicate-wordpress-pages-or-posts\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.milesweb.in\/hosting-faqs\/discover-the-steps-to-duplicate-wordpress-pages-or-posts\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/discover-the-steps-to-duplicate-wordpress-pages-or-posts\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.milesweb.in\/hosting-faqs\/"},{"@type":"ListItem","position":2,"name":"Discover the Steps to Duplicate WordPress Pages or Posts"}]},{"@type":"WebSite","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#website","url":"https:\/\/www.milesweb.in\/hosting-faqs\/","name":"Web Hosting FAQs by MilesWeb","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.milesweb.in\/hosting-faqs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/7e3952607fa9eb4e82fea9f7cad9c945","name":"Pallavi Godse","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/3602d0ac1ab89332aea8205dcf474af4ff4eb319cfd584544038908cd5e4c966?s=96&d=blank&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3602d0ac1ab89332aea8205dcf474af4ff4eb319cfd584544038908cd5e4c966?s=96&d=blank&r=g","caption":"Pallavi Godse"},"description":"Pallavi is a Digital Marketing Executive at MilesWeb and has an experience of over 4 years in content development. She is interested in writing engaging content on business, technology, web hosting and other topics related to information technology.","sameAs":["https:\/\/www.milesweb.in"],"url":"https:\/\/www.milesweb.in\/hosting-faqs\/author\/pallavi\/"}]}},"_links":{"self":[{"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/posts\/8738","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/users\/16"}],"replies":[{"embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/comments?post=8738"}],"version-history":[{"count":8,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/posts\/8738\/revisions"}],"predecessor-version":[{"id":15818,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/posts\/8738\/revisions\/15818"}],"wp:attachment":[{"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/media?parent=8738"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/categories?post=8738"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/tags?post=8738"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}