{"id":78,"date":"2012-02-14T10:56:00","date_gmt":"2012-02-14T10:56:00","guid":{"rendered":"http:\/\/pheonixsolutions.com\/?p=78"},"modified":"2026-06-09T21:44:31","modified_gmt":"2026-06-09T16:14:31","slug":"wordpress-index-hacked-page-recovery","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/wordpress-index-hacked-page-recovery\/","title":{"rendered":"WordPress index hacked page recovery"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p>A hacked WordPress website can be a frustrating experience for any website owner. One of the most common signs of a compromise is when hackers modify the <code>index.php<\/code> file to display their own messages, logos, advertisements, or defacement pages instead of your website content. In some cases, attackers may also delete administrator accounts, preventing you from accessing the WordPress dashboard.<\/p>\n\n\n\n<p>While restoring the affected files can quickly bring your website back online, it is important to understand that file replacement alone does not remove the vulnerability that allowed the attack. This guide explains how to restore compromised WordPress index files, recover a deleted administrator account, and take additional security measures to prevent future attacks.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Access File Manager<\/h3>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Log in to your cPanel account.<\/li>\n\n\n\n<li>Open <strong>File Manager<\/strong>.<\/li>\n\n\n\n<li>Navigate to your WordPress document root:\n<ul class=\"wp-block-list\">\n<li>Primary domain: <code>public_html<\/code><\/li>\n\n\n\n<li>Addon domain: The corresponding folder inside <code>public_html<\/code>.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Restore the Main Website Index File<\/h3>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Locate the <code>index.php<\/code> file in the WordPress root directory.<\/li>\n\n\n\n<li>Right-click the file and select <strong>Edit<\/strong> or <strong>Code Editor<\/strong>.<\/li>\n\n\n\n<li>Remove all existing contents.<\/li>\n\n\n\n<li>Replace them with the default WordPress <code>index.php<\/code> code:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code><!--?php\n\/**\n * Front to the WordPress application.\n *\/\ndefine('WP_USE_THEMES', true);\nrequire __DIR__ . '\/wp-blog-header.php';--><\/code><\/pre>\n\n\n\n<ol start=\"5\" class=\"wp-block-list\">\n<li>Save the file.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Restore the WordPress Admin Index File<\/h3>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Open the <code>wp-admin<\/code> directory.<\/li>\n\n\n\n<li>Locate the <code>index.php<\/code> file.<\/li>\n\n\n\n<li>Edit the file and remove all existing content.<\/li>\n\n\n\n<li>Replace it with the default WordPress admin index code:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code><!--?php\n\/**\n * WordPress Administration Bootstrap\n *\/\nrequire_once dirname(__DIR__) . '\/wp-load.php';\nwp_redirect(admin_url());\nexit;--><\/code><\/pre>\n\n\n\n<ol start=\"5\" class=\"wp-block-list\">\n<li>Save the file.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Verify Website Access<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Refresh your website homepage.<\/li>\n\n\n\n<li>Clear your browser cache if necessary.<\/li>\n\n\n\n<li>Confirm that both the website and WordPress admin panel are loading correctly.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Alternative Fix: Upload Original Theme Files<\/h2>\n\n\n\n<p>In some situations, attackers modify theme files rather than WordPress core files. If your website continues to display unauthorized content after restoring the index files:<\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Download a clean copy of your active theme.<\/li>\n\n\n\n<li>Upload the original theme files to your server.<\/li>\n\n\n\n<li>Overwrite the compromised files.<\/li>\n\n\n\n<li>Verify that the theme&#8217;s <code>index.php<\/code> and other template files have not been modified.<\/li>\n<\/ol>\n\n\n\n<p>This method can help restore the website if the infection is limited to the theme directory.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Recovering a Deleted Administrator Account<\/h2>\n\n\n\n<p>Some attackers remove administrator accounts from the database, making it impossible to log in to the WordPress dashboard.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Using phpMyAdmin<\/h3>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Log in to cPanel.<\/li>\n\n\n\n<li>Open <strong>phpMyAdmin<\/strong>.<\/li>\n\n\n\n<li>Select your WordPress database.<\/li>\n\n\n\n<li>Open the <code>wp_users<\/code> table.<\/li>\n\n\n\n<li>Click <strong>Browse<\/strong>.<\/li>\n<\/ol>\n\n\n\n<p>If the primary administrator account is missing:<\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Select another administrator account (for example, ID 2 or ID 3).<\/li>\n\n\n\n<li>Click <strong>Edit<\/strong>.<\/li>\n\n\n\n<li>Update the following values:<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><th>Field<\/th><th>Value<\/th><\/tr><tr><td>ID<\/td><td>1<\/td><\/tr><tr><td>user_login<\/td><td>Your preferred username<\/td><\/tr><tr><td>user_pass<\/td><td>Set Function = MD5, Value = Your password<\/td><\/tr><tr><td>user_nicename<\/td><td>Your username<\/td><\/tr><tr><td>display_name<\/td><td>Your username<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ol start=\"4\" class=\"wp-block-list\">\n<li>Click <strong>Go<\/strong> to save the changes.<\/li>\n<\/ol>\n\n\n\n<p>You should now be able to access the WordPress admin dashboard using the updated credentials.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Additional Security Checks<\/h2>\n\n\n\n<p>After regaining access to your website, perform the following checks:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Scan for Malware<\/h3>\n\n\n\n<p>Use a reputable WordPress security plugin or malware scanner to identify malicious files, hidden backdoors, and unauthorized code injections.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Review Installed Plugins<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Remove unused plugins.<\/li>\n\n\n\n<li>Update all active plugins to their latest versions.<\/li>\n\n\n\n<li>Replace abandoned or unsupported plugins.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Update WordPress Core and Themes<\/h3>\n\n\n\n<p>Running outdated software is one of the leading causes of WordPress compromises. Ensure that WordPress core, themes, and plugins are fully updated.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Change All Passwords<\/h3>\n\n\n\n<p>Immediately change:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>WordPress administrator passwords<\/li>\n\n\n\n<li>cPanel passwords<\/li>\n\n\n\n<li>FTP\/SFTP passwords<\/li>\n\n\n\n<li>Database passwords<\/li>\n\n\n\n<li>Email account passwords associated with the website<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Check User Accounts<\/h3>\n\n\n\n<p>Review all WordPress users and remove any suspicious administrator accounts created by attackers.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Enable Security Protection<\/h3>\n\n\n\n<p>Consider implementing:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Two-factor authentication (2FA)<\/li>\n\n\n\n<li>Login attempt limits<\/li>\n\n\n\n<li>Web Application Firewall (WAF)<\/li>\n\n\n\n<li>Regular malware scanning<\/li>\n\n\n\n<li>Automated backups<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>A hacked WordPress index page can disrupt your website and impact your visitors&#8217; trust. Restoring the default <code>index.php<\/code> files and recovering deleted administrator accounts can help bring your website back online quickly. However, these actions only address the visible damage. To fully secure your website, you must identify the source of the compromise, remove any malware or backdoors, update all software components, and strengthen your security practices.<\/p>\n\n\n\n<p>Regular backups, timely updates, strong passwords, and proactive security monitoring are essential for protecting your WordPress website against future attacks. By following the recovery and security recommendations outlined in this guide, you can restore your website and significantly reduce the risk of another compromise.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction A hacked WordPress website can be a frustrating experience for any website owner. One of the most common signs of a compromise is when hackers modify the index.php file to display their own messages, logos, advertisements, or defacement pages instead of your website content. In some cases, attackers may&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/wordpress-index-hacked-page-recovery\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">WordPress index hacked page recovery<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[1],"tags":[],"class_list":{"0":"post-78","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-uncategorized","7":"h-entry","9":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/wordpress-index-hacked-page-recovery\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Introduction A hacked WordPress website can be a frustrating experience for any website owner. One of the most common signs of a compromise is when hackers modify the index.php file to display their own messages, logos, advertisements, or defacement pages instead of your website content. In some cases, attackers may&hellip; Continue Reading WordPress index hacked page recovery\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/wordpress-index-hacked-page-recovery\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2012-02-14T10:56:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-09T16:14:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\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:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wordpress-index-hacked-page-recovery\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wordpress-index-hacked-page-recovery\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"WordPress index hacked page recovery\",\"datePublished\":\"2012-02-14T10:56:00+00:00\",\"dateModified\":\"2026-06-09T16:14:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wordpress-index-hacked-page-recovery\\\/\"},\"wordCount\":680,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wordpress-index-hacked-page-recovery\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wordpress-index-hacked-page-recovery\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wordpress-index-hacked-page-recovery\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2012-02-14T10:56:00+00:00\",\"dateModified\":\"2026-06-09T16:14:31+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wordpress-index-hacked-page-recovery\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wordpress-index-hacked-page-recovery\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wordpress-index-hacked-page-recovery\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"WordPress index hacked page recovery\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/pheonixsolutions.com\\\/blog\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","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:\/\/pheonixsolutions.com\/blog\/wordpress-index-hacked-page-recovery\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Introduction A hacked WordPress website can be a frustrating experience for any website owner. One of the most common signs of a compromise is when hackers modify the index.php file to display their own messages, logos, advertisements, or defacement pages instead of your website content. In some cases, attackers may&hellip; Continue Reading WordPress index hacked page recovery","og_url":"https:\/\/pheonixsolutions.com\/blog\/wordpress-index-hacked-page-recovery\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2012-02-14T10:56:00+00:00","article_modified_time":"2026-06-09T16:14:31+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/wordpress-index-hacked-page-recovery\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/wordpress-index-hacked-page-recovery\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"WordPress index hacked page recovery","datePublished":"2012-02-14T10:56:00+00:00","dateModified":"2026-06-09T16:14:31+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/wordpress-index-hacked-page-recovery\/"},"wordCount":680,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/wordpress-index-hacked-page-recovery\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/wordpress-index-hacked-page-recovery\/","url":"https:\/\/pheonixsolutions.com\/blog\/wordpress-index-hacked-page-recovery\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2012-02-14T10:56:00+00:00","dateModified":"2026-06-09T16:14:31+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/wordpress-index-hacked-page-recovery\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/wordpress-index-hacked-page-recovery\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/wordpress-index-hacked-page-recovery\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"WordPress index hacked page recovery"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/pheonixsolutions.com\/blog"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-1g","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/78","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=78"}],"version-history":[{"count":2,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/78\/revisions"}],"predecessor-version":[{"id":10329,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/78\/revisions\/10329"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=78"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=78"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=78"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}