{"id":94823,"date":"2022-03-08T12:41:23","date_gmt":"2022-03-08T17:41:23","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=94823"},"modified":"2022-03-08T12:41:24","modified_gmt":"2022-03-08T17:41:24","slug":"integrate-wordpress-github","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/","title":{"rendered":"How To Integrate WordPress and GitHub"},"content":{"rendered":"<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"538\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/How-To-Integrate-WordPress-and-GitHub-1024x538.png\" alt=\"How To Integrate WordPress and GitHub\" class=\"wp-image-94849\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/How-To-Integrate-WordPress-and-GitHub-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/How-To-Integrate-WordPress-and-GitHub-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/How-To-Integrate-WordPress-and-GitHub-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/How-To-Integrate-WordPress-and-GitHub.png 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n\n<p> In this article, you will learn how to sync a local WordPress development project with GitHub, and how to automate deployment of the site files from GitHub to your production server. <\/p>\n\n\n\n<p class=\"alert alert-info\">If you do not want to use GitHub to host your code, you can also set up a <a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-server\/\">private Git server<\/a>.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#integrate-with-WordPress\">Why Integrate Git With WordPress?<\/a><\/li><li><a href=\"#creating-repository\">Creating a Remote Repository at GitHub<\/a><\/li><li><a href=\"#setting-up-local-environment\">Setting Your Local Environment For Git<\/a><\/li><li><a href=\"#deployment\">Deployment Using GitHub Actions<\/a><\/li><\/ul>\n\n\n\n<p>\nIn order to follow along with this article you will need:\n<\/p>\n\n\n\n<ul class=\"org-ul wp-block-list\"><li>Git installed on your computer<\/li><li>Local WordPress development site<\/li><li>GitHub account<\/li><li>A server with FTP or SSH access<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"integrate-with-WordPress\">Why Integrate Git With WordPress?<\/h2>\n\n\n\n<p>\nIf you have been using WordPress for some time, you likely know that much of the administration of the site for all of your day to day needs can be accomplished in the WordPress Dashboard.\n<\/p>\n\n\n\n<p>\nHowever, there will be occasions in which you will want to edit core files, plugin, or theme files, and doing all of those edits in the admin area of the site can be tedious or even hazardous.\n<\/p>\n\n\n\n<p>\nThis is why many users will install a local WordPress development.  If you are reading this article you likely understand the benefits of local development, so they need not be repeated here.\n<\/p>\n\n\n\n<p> The benefits of integrating Git and GitHub start to accrue by saving you some time and effort.  Instead of making your local changes, logging into your server, and uploading files, you can use Git to automatically push your changes to your server, as well as providing redundant file security, branches, and all of the other nice features of Git.  This kind of continuous deployment cycle is easier than ever to set up, and this article will tell you exactly how to do it. <\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"creating-repository\">Creating a Remote Repository at GitHub<\/h2>\n\n\n\n<p>\nIn order to sync your local WordPress files with GitHub, you will just need to create a free public repository.\n<\/p>\n\n\n\n<ol class=\"article_list wp-block-list\"><li>Log into GitHub<\/li><li>Create a new repository from the dropdown menu<br><img loading=\"lazy\" decoding=\"async\" width=\"500\" height=\"386\" class=\"wp-image-94852\" style=\"width: 500px;\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/wordpress-github_001.png\" alt=\"New GitHub repository\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/wordpress-github_001.png 332w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/wordpress-github_001-300x231.png 300w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/li><li>Name your repository<br><img loading=\"lazy\" decoding=\"async\" width=\"500\" height=\"213\" class=\"wp-image-94853\" style=\"width: 500px;\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/wordpress-github_002.png\" alt=\"Name repository\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/wordpress-github_002.png 771w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/wordpress-github_002-300x128.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/wordpress-github_002-768x327.png 768w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/li><li>Click <b>Create Repository<\/b> when ready<br><img loading=\"lazy\" decoding=\"async\" width=\"500\" height=\"300\" class=\"wp-image-94854\" style=\"width: 500px;\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/wordpress-github_003.png\" alt=\"Click Create Repository\"><\/li><\/ol>\n\n\n\n<p>\nYou now have a remote repository at GitHub.  Be sure to note your live repository link.  It will look something like this:\n<\/p>\n\n\n\n<pre id=\"org5d76c97\" class=\"wp-block-preformatted example\">https:\/\/github.com\/username\/wordpress-test.git\n<\/pre>\n\n\n\n<p>\nYou will later use this link when adding your repository to your local Git project.\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"setting-up-local-environment\">Setting Your Local Environment For Git<\/h2>\n\n\n\n<p>\nThis article assumes that you already have a local WordPress development environment.  If you have not already, the steps outlined in this section will show how to set up your local environment with Git and add your remote repository.\n<\/p>\n\n\n\n<p>\nAdding a remote repository may sound complicated, but it simply means you will tell your local Git installation where to push changes you make to your site.\n<\/p>\n\n\n\n<p>\nFirst, initalize Git in your local WordPress directory:\n<\/p>\n\n\n\n<pre id=\"org6cd542f\" class=\"wp-block-preformatted example\">git init\n<\/pre>\n\n\n\n<p>\nNow, add the core files.  Remember, this command will add all files.  If you wish to exclude any files, such as media files, you will want to create a <a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/gitignore\/\">.gitignore<\/a> file <a href=\"https:\/\/github.com\/github\/gitignore\/blob\/main\/WordPress.gitignore\">for WordPress<\/a>:\n<\/p>\n\n\n\n<pre id=\"orgd155ce2\" class=\"wp-block-preformatted example\">git add -A\n<\/pre>\n\n\n\n<p>\nNow, commit the changes to the local repository:\n<\/p>\n\n\n\n<pre id=\"orgb8ba876\" class=\"wp-block-preformatted example\">git commit -am \"Initial commit\"\n<\/pre>\n\n\n\n<p>\nThe commit is the last step before pushing your files up to GitHub.  But first, you will need to add your repository to the local configuration.  This command will basically tell your local Git which repository to push to.  You will give Git the name of a repository (in this example, \u201cgithub\u201d) and a link to the repository:\n<\/p>\n\n\n\n<pre id=\"org6d3c4b9\" class=\"wp-block-preformatted example\">git remote add github https:\/\/github.com\/&lt;username&gt;\/&lt;name of repository&gt;.git\n<\/pre>\n\n\n\n<p>\nOf course, be sure to substitute the example URL with the correct URL for your site.\n<\/p>\n\n\n\n<p>\nFinally, it\u2019s time to push to GitHub:\n<\/p>\n\n\n\n<pre id=\"org7637c55\" class=\"wp-block-preformatted example\">git push github master\n<\/pre>\n\n\n\n<p>\nIn the above, \u201cgithub\u201d is the name of the repository, and \u201cmaster\u201d is the local branch you are pushing up.\n<\/p>\n\n\n\n<p>\nThat\u2019s it!  You are now pushing your project changes up to GitHub.  Next, you will want to set up deployment to a live production server.\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"deployment\">Deployment Using GitHub Actions<\/h2>\n\n\n\n<p>\nWith GitHub actions, you can use either FTP or SSH to push your changes to your server.\n<\/p>\n\n\n\n<p> Be sure to check out our full guide on <a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/deploy-files-github-actions\/\">deployment with GitHub actions<\/a>.  As written in the guide, the deployment will be triggered on the \u201cpush\u201d action.  This means that when you push your changes to GitHub, they will be deployed to your server. <\/p>\n\n\n<!-- Shortcode [cloud-server-cta5] does not exist -->\n","protected":false},"excerpt":{"rendered":"<p>In this article, you will learn how to sync a local WordPress development project with GitHub, and how to automate deployment of the site files from GitHub to your production server. If you do not want to use GitHub to host your code, you can also set up a private Git server. Why Integrate Git<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/\"> Read More ><\/a><\/p>\n","protected":false},"author":17,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4325],"tags":[],"class_list":["post-94823","post","type-post","status-publish","format-standard","hentry","category-wordpress-hosting"],"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 Integrate WordPress and GitHub | InMotion Hosting<\/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:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Integrate WordPress and GitHub | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In this article, you will learn how to sync a local WordPress development project with GitHub, and how to automate deployment of the site files from GitHub to your production server. If you do not want to use GitHub to host your code, you can also set up a private Git server. Why Integrate Git Read More &gt;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/\" \/>\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=\"2022-03-08T17:41:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-03-08T17:41:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/How-To-Integrate-WordPress-and-GitHub-1024x538.png\" \/>\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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/\"},\"author\":{\"name\":\"Christopher Maiorana\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\"},\"headline\":\"How To Integrate WordPress and GitHub\",\"datePublished\":\"2022-03-08T17:41:23+00:00\",\"dateModified\":\"2022-03-08T17:41:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/\"},\"wordCount\":700,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/How-To-Integrate-WordPress-and-GitHub-1024x538.png\",\"articleSection\":[\"WordPress Hosting\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/\",\"name\":\"How To Integrate WordPress and GitHub | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/How-To-Integrate-WordPress-and-GitHub-1024x538.png\",\"datePublished\":\"2022-03-08T17:41:23+00:00\",\"dateModified\":\"2022-03-08T17:41:24+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/How-To-Integrate-WordPress-and-GitHub.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/How-To-Integrate-WordPress-and-GitHub.png\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Integrate WordPress and GitHub\"}]},{\"@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 Integrate WordPress and GitHub | InMotion Hosting","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\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/","og_locale":"en_US","og_type":"article","og_title":"How To Integrate WordPress and GitHub | InMotion Hosting","og_description":"In this article, you will learn how to sync a local WordPress development project with GitHub, and how to automate deployment of the site files from GitHub to your production server. If you do not want to use GitHub to host your code, you can also set up a private Git server. Why Integrate Git Read More >","og_url":"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2022-03-08T17:41:23+00:00","article_modified_time":"2022-03-08T17:41:24+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/How-To-Integrate-WordPress-and-GitHub-1024x538.png","type":"","width":"","height":""}],"author":"Christopher Maiorana","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Christopher Maiorana","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/"},"author":{"name":"Christopher Maiorana","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f"},"headline":"How To Integrate WordPress and GitHub","datePublished":"2022-03-08T17:41:23+00:00","dateModified":"2022-03-08T17:41:24+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/"},"wordCount":700,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/How-To-Integrate-WordPress-and-GitHub-1024x538.png","articleSection":["WordPress Hosting"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/","url":"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/","name":"How To Integrate WordPress and GitHub | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/How-To-Integrate-WordPress-and-GitHub-1024x538.png","datePublished":"2022-03-08T17:41:23+00:00","dateModified":"2022-03-08T17:41:24+00:00","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/How-To-Integrate-WordPress-and-GitHub.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/How-To-Integrate-WordPress-and-GitHub.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/integrate-wordpress-github\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How To Integrate WordPress and GitHub"}]},{"@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\/94823","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=94823"}],"version-history":[{"count":6,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/94823\/revisions"}],"predecessor-version":[{"id":94857,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/94823\/revisions\/94857"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=94823"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=94823"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=94823"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}