{"id":700,"date":"2024-06-04T11:57:19","date_gmt":"2024-06-04T11:57:19","guid":{"rendered":"https:\/\/muffingroup.com\/advice\/?p=700"},"modified":"2024-06-04T12:00:52","modified_gmt":"2024-06-04T12:00:52","slug":"how-to-install-wordpress-in-linux","status":"publish","type":"post","link":"https:\/\/muffingroup.com\/advice\/guides\/how-to-install-wordpress-in-linux\/","title":{"rendered":"How to Install WordPress in Linux"},"content":{"rendered":"\n<p>Need to install WordPress in Linux? This guide cuts through the confusion, offering direct instructions to get WordPress up and running on your Linux system. From initial server setup to the final WordPress configuration, we\u2019ve distilled the essential steps into an easy-to-follow process. Dive in to efficiently embark on your WordPress journey with Linux.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Key Takeaways<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Linux and WordPress are highly compatible, making the installation process straightforward, particularly on Ubuntu, which offers simple update procedures and one-click installations.<\/li>\n\n\n\n<li>Preparing your Linux system includes updating packages, installing essential tools like wget and unzip, and setting up the LAMP stack\u2013\u2013Linux, Apache, MySQL, and PHP, which provides the environment necessary for running WordPress.<\/li>\n\n\n\n<li>Final installation steps involve downloading WordPress, setting secure file permissions, creating a MySQL database and user with proper privileges, configuring the wp-config.php file, optimizing the site\u2019s performance through caching and security measures, and troubleshooting common issues like permission errors and database connection failures.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Understanding WordPress and Linux Compatibility<\/h2>\n\n\n\n<p>WordPress doesn\u2019t merely function with Linux, it thrives in this environment. Its high compatibility with various operating systems shines particularly bright on Linux. This dynamic duo allows for a seamless installation process, outstanding responsiveness, and an SEO-friendly structure to boot.<\/p>\n\n\n\n<p>Why choose WordPress? This leading free and open-source CMS powers over 60 million websites, claiming a market share of over 60%. From blogs and online stores to eLearning sites, WordPress\u2019s versatility is ready to bring your web vision to life. And with Linux, particularly Ubuntu, installation is a walk in the park. It offers easy-to-follow install and upgrade procedures, along with one-click installation features, ensuring that you can focus on creating, not troubleshooting.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Preparing Your Linux System for WordPress<\/h2>\n\n\n\n<p>Before initiating the WordPress installation, your Linux system needs preparation. This will ensure that it meets the requirements and has the necessary permissions for a smooth WordPress installation. We\u2019ll first update your Linux system, then install essential tools like wget and unzip.<\/p>\n\n\n\n<p>So, let\u2019s buckle up and prepare your system!<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Update Your Linux System<\/h3>\n\n\n\n<p>The first stride towards a seamless WordPress installation is updating your Linux system. This process ensures that all packages are current, which may include important security patches and compatibility improvements. Regular system updates are crucial to maintain compatibility and security before installing applications like WordPress.<\/p>\n\n\n\n<p>To update your Linux system, you can use the command sequence: \u2018sudo apt update &amp;&amp; sudo apt upgrade -y\u2019. This ensures all packages are up-to-date, creating a stable base for your WordPress site.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Installing Essential Components<\/h3>\n\n\n\n<p>After ensuring that your system is up-to-date, the next step is installing some essential tools. Specifically, we\u2019re talking about wget and unzip utilities. These tools are crucial for downloading and extracting WordPress files during the installation process on a Linux server.<\/p>\n\n\n\n<p>To install wget and unzip, you can use your package manager. The command \u2018sudo apt install wget unzip\u2019 will get the job done. wget assists in downloading the latest version of WordPress directly to your server using the command line.<\/p>\n\n\n\n<p>With the installation of these tools, you are primed for a successful WordPress installation on either Ubuntu or any other Linux distribution.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Setting Up the LAMP Stack on Linux<\/h2>\n\n\n\n<p>With your Linux system now prepared, time to discuss the LAMP stack. LAMP is an acronym that represents the combination of:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Linux<\/li>\n\n\n\n<li>Apache<\/li>\n\n\n\n<li>MySQL<\/li>\n\n\n\n<li>PHP<\/li>\n<\/ul>\n\n\n\n<p>Together, these technologies are commonly used to create web applications. This stack is crucial for running a WordPress site, providing the necessary environment for its operation. One essential component to manage your WordPress site effectively is the wp config file, which allows you to configure various settings.<\/p>\n\n\n\n<p>Let\u2019s explore each component, kicking off with the Apache web server.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Install Apache Web Server<\/h3>\n\n\n\n<p>Apache is the \u2018A\u2019 in our LAMP stack. It\u2019s a web server required to host your WordPress site as it handles incoming web requests. To install Apache, you can use your system\u2019s package manager.<\/p>\n\n\n\n<p>After the installation of Apache, you can confirm its operation by directing your web browser to \u2018localhost\u2019. If you see the Apache default page, it means you\u2019ve successfully installed Apache on your Linux server. With Apache up and running, you\u2019re one step closer to launching your WordPress site on Ubuntu or another Linux distribution.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Install MySQL Server<\/h3>\n\n\n\n<p>Next up in our LAMP stack is MySQL. This database management system will house your WordPress site\u2019s content. You can install MySQL on Ubuntu using the \u2018sudo apt-get install mysql-server\u2019 command in the terminal.<\/p>\n\n\n\n<p>Once MySQL is installed, follow these steps to secure your installation:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Execute \u2018mysql_secure_installation\u2019, a security script designed to configure additional security options.<\/li>\n\n\n\n<li>During this process, you\u2019ll be prompted to set up a root password and install the validate_password plugin to enforce password security.<\/li>\n\n\n\n<li>To finalize the security changes, execute \u2018FLUSH PRIVILEGES\u2019, which refreshes the in-memory privilege data.<\/li>\n<\/ol>\n\n\n\n<p>With a secure installation of MySQL, it\u2019s time to proceed to the \u2018P\u2019 in LAMP &#8211; PHP.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Install PHP and Extensions<\/h3>\n\n\n\n<p>PHP is the final component of the LAMP stack. It serves as the backbone of WordPress, enabling it to run on a Linux server. But PHP alone isn\u2019t enough. In addition to the basic setup, you will need to install additional modules that enable PHP to interact with both Apache and MySQL. These modules are essential for a seamless communication between the different components of your web application, including the proper handling of a php file. These are essential for the seamless functioning of WordPress.<\/p>\n\n\n\n<p>By running a specific command, you can verify the version of PHP installed on your Linux server. It\u2019s crucial to have the latest version of PHP installed to avoid common issues such as critical website errors due to outdated PHP versions. With PHP and its extensions installed, your LAMP stack is complete, and you\u2019re ready to download WordPress.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Downloading and Configuring WordPress Files<\/h2>\n\n\n\n<p>With your LAMP stack set up, the next step is to:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Download the latest version of WordPress<\/li>\n\n\n\n<li>Extract the files into a WordPress folder<\/li>\n\n\n\n<li>Place the WordPress folder in the document root directory (\/var\/www\/html)<\/li>\n\n\n\n<li>Proceed with the installation<\/li>\n<\/ol>\n\n\n\n<p>Let\u2019s dissect each step.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Download WordPress<\/h3>\n\n\n\n<p>Downloading WordPress is straightforward. You can use the \u2018wget\u2019 command to download the latest WordPress package directly to your server. The command to execute is \u2018wget <a href=\"https:\/\/wordpress.org\/latest.tar.gz&#039;\" rel=\"nofollow noopener\" target=\"_blank\">https:\/\/wordpress.org\/latest.tar.gz\u2019<\/a>.<\/p>\n\n\n\n<p>Upon downloading WordPress, the next step is to extract the files.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Extracting WordPress<\/h3>\n\n\n\n<p>Once you\u2019ve downloaded WordPress, you need to extract the files. This is done using the \u2018tar\u2019 command, which is used on Linux systems to extract archived (tarball) files. The command to extract the WordPress files is \u2018tar -xzvf latest.tar.gz\u2019.<\/p>\n\n\n\n<p>Executing this command will unpack the WordPress files into your current directory. With the completion of the extraction process, your WordPress site on your Linux server is one step closer to becoming operational.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Setting Permissions<\/h3>\n\n\n\n<p>After extracting the WordPress files, it\u2019s crucial to set secure file permissions and ownership. This is essential for maintaining both the security and functionality of a WordPress website, preventing installation errors and unauthorized access.<\/p>\n\n\n\n<p>To set the correct permissions for directories and files in WordPress, follow these steps:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Set directories to 755 permissions.<\/li>\n\n\n\n<li>Set files to 644 permissions.<\/li>\n\n\n\n<li>Use the \u2018chmod\u2019 command to achieve this balance between accessibility and security.<\/li>\n\n\n\n<li>Use the \u2018chown\u2019 command to modify the ownership of the WordPress directory to the appropriate user, ensuring the web server has the necessary access for file operations.<\/li>\n<\/ol>\n\n\n\n<p>Once the correct permissions are in place, you can proceed to create your WordPress database.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Creating the WordPress Database<\/h2>\n\n\n\n<p>Creating a separate MySQL database for WordPress enhances the security and management of the WordPress installation. This dedicated database will store all WordPress site content and settings.<\/p>\n\n\n\n<p>Let\u2019s explore the process of creating a database and securing user privileges.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Create a Database<\/h3>\n\n\n\n<p>For a local server environment, setting up a MySQL database dedicated to WordPress is crucial. You can create a new database within MySQL using command-line statements. After creating the database, assign complete control over the new database to the user account that will manage WordPress. You can confirm the successful creation of a new MySQL database by typing \u2018SHOW DATABASES;\u2019 in the MySQL command line.<\/p>\n\n\n\n<p>Once your database is created, the next step is to secure user privileges.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Secure User Privileges<\/h3>\n\n\n\n<p>Securing user privileges is a critical step in the setup process. You\u2019ll need to grant specific privileges to the WordPress database user to manage the database securely. These privileges include:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>SELECT<\/li>\n\n\n\n<li>INSERT<\/li>\n\n\n\n<li>UPDATE<\/li>\n\n\n\n<li>DELETE<\/li>\n\n\n\n<li>CREATE<\/li>\n\n\n\n<li>DROP<\/li>\n\n\n\n<li>ALTER<\/li>\n<\/ul>\n\n\n\n<p>You can set these privileges using phpMyAdmin or a similar database management tool.<\/p>\n\n\n\n<p>The credentials required to set up WordPress are specified when creating the WordPress database. This is a critical step in preventing unauthorized access to the WordPress database, so be sure to take care when entering these details. With user privileges securely in place, it\u2019s time to configure the WordPress installation.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Configuring the WordPress Installation<\/h2>\n\n\n\n<p>With your LAMP stack set up and your WordPress files prepared, the next step is to configure the WordPress installation. This involves ensuring a successful database connection and finalizing the setup by configuring the wp-config.php file and other essential settings.<\/p>\n\n\n\n<p>Let\u2019s navigate through these steps.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Edit wp-config.php<\/h3>\n\n\n\n<p>The wp-config.php file, also known as the configuration file, plays a vital role in your WordPress setup. It\u2019s here that you\u2019ll insert the database name, username, and password created during the MySQL setup. Begin by replacing the placeholders in the wp-config.php file with your actual database details. You can use the sample configuration as a template.<\/p>\n\n\n\n<p>In addition, here are some important steps to follow to ensure the security of your WordPress site:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Use the WordPress.org secret-key service to generate security keys.<\/li>\n\n\n\n<li>Replace the default placeholders in the php wp config file with these keys.<\/li>\n\n\n\n<li>Set the file permissions of wp-config.php to 600 to prevent unauthorized access.<\/li>\n\n\n\n<li>Once these configurations are in place, you can proceed to run the WordPress setup wizard.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Run the WordPress Setup Wizard<\/h3>\n\n\n\n<p>Running the WordPress setup wizard is the final step before your WordPress site goes live. To access the setup wizard, open your web browser and navigate to your server\u2019s IP address or domain, such as \u2018localhost\/wordpress\/\u2018 or \u2018localhost\/mywebsite\/wp-admin\/setup-config.php\u2019. From there, you\u2019ll complete the required steps in the setup wizard. This includes:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Selecting a language<\/li>\n\n\n\n<li>Inputting database name, username, and password<\/li>\n\n\n\n<li>Setting a site title<\/li>\n\n\n\n<li>Creating an administrative username and password for your WordPress dashboard.<\/li>\n<\/ul>\n\n\n\n<p>After inserting the necessary database information, you\u2019ll be redirected to the WordPress setup wizard. Here, you\u2019ll provide the required credentials for the final installation step. With the setup wizard complete, your WordPress site is ready to go!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Final Steps and Verifying Installation<\/h2>\n\n\n\n<p>Before we rejoice, let\u2019s wrap up the final steps of the installation process and ensure everything is functioning as expected. During the initial setup, after filling out the WordPress wizard credentials, you\u2019ll specify the site title and administrative username and password. To finalize these initial settings, scroll down and click \u2018Install WordPress\u2019.<\/p>\n\n\n\n<p>Once the installation is complete, you can access the WordPress backend login page by navigating to \u2018localhost\/wp-login.php\u2019 and entering the credentials. From there, you can adjust the general settings of your WordPress site, including setting the main contact email, timezone, and language. Remember, it\u2019s critical to ensure that user profiles are securely set up for content publishers and that personal information for login credentials is not exposed.<\/p>\n\n\n\n<p>With your WordPress site now live, it\u2019s time to discuss ways to optimize it for enhanced performance.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Optimizing Your WordPress Site on Linux<\/h2>\n\n\n\n<p>Your WordPress site is up and running, but there\u2019s more to do! Optimizing your WordPress site on Linux will ensure better performance and a smoother user experience. This can involve:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Updating to PHP 7 for improved speed and efficiency<\/li>\n\n\n\n<li>Disabling unused services to reduce server load<\/li>\n\n\n\n<li>Keeping both WordPress and its plugins updated to the latest versions<\/li>\n<\/ul>\n\n\n\n<p>Let\u2019s explore how to implement caching and bolster security measures to enhance your WordPress site\u2019s performance.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Implement Caching<\/h3>\n\n\n\n<p>Adding an opcode cache like OPcache to PHP can significantly boost the performance of WordPress sites on Linux servers. When configured with WordPress, Redis, an in-memory data structure store, improves performance by caching database queries necessary for page rendering.<\/p>\n\n\n\n<p>Using Redis for caching leads to faster page load times and alleviates the load on the database. Redis object cache for WordPress stores SQL query results in memory, allowing pages to load more efficiently than by querying the database for every request.<\/p>\n\n\n\n<p>A persistent object cache in Redis for WordPress means cached data are stored indefinitely and can be reused for subsequent page requests, enhancing performance.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhance Security Measures<\/h3>\n\n\n\n<p>In addition to performance, security is a critical factor in the success of your WordPress site. Enhancing your site\u2019s security measures includes:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Installing an SSL certificate<\/li>\n\n\n\n<li>Adopting a strong password policy<\/li>\n\n\n\n<li>Configuring secure updates and installations<\/li>\n\n\n\n<li>Performing routine malware scans<\/li>\n<\/ul>\n\n\n\n<p>You can enhance the security of your WordPress site by:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Limiting login attempts to prevent brute-force attacks<\/li>\n\n\n\n<li>Setting up strong monitoring and logging to identify and mitigate potential security breaches<\/li>\n\n\n\n<li>Using Jetpack, which provides a suite of security tools and plugins designed specifically for WordPress website security.<\/li>\n<\/ul>\n\n\n\n<p>With these measures in place, your WordPress site on Linux will not only perform well but also be secure.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Troubleshooting Common WordPress Installation Issues<\/h2>\n\n\n\n<p>Despite meticulous preparation, you may still face some common issues during the WordPress installation process. Luckily, most of these issues are easy to resolve. Let\u2019s tackle how to deal with syntax errors, permission errors, and database connection failures to guarantee a smooth WordPress installation process.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Dealing with Permission Errors<\/h3>\n\n\n\n<p>Permission errors are common problems that can hinder the WordPress installation process. They can arise if the Apache server doesn\u2019t have the necessary permissions to read and write files.<\/p>\n\n\n\n<p>To avoid permission issues, file and directory ownership should be assigned to the Apache server. You can use the \u2018chown\u2019 command to change the ownership of the WordPress files and directories to the Apache server, typically with the Apache user and group being \u2018www-data\u2019. Setting correct ownership permissions ensures that WordPress can properly read and write files, avoiding a myriad of permission errors during its operation.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Resolving Database Connection Failures<\/h3>\n\n\n\n<p>Database connection failures are another common issue during the WordPress installation process. These can occur if the database server is down due to a traffic surge or if the database user doesn\u2019t have the correct permissions.<\/p>\n\n\n\n<p>To resolve these issues, you can:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Check the status of the database server<\/li>\n\n\n\n<li>Ensure the database user has the correct permissions<\/li>\n\n\n\n<li>If the issue persists, adjust the wp-config.php file to include the correct database credentials, including the database name, user, and password.<\/li>\n<\/ol>\n\n\n\n<p>With these steps, you should be able to resolve any database connection issues and proceed with your WordPress installation.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Summary<\/h2>\n\n\n\n<p>Congratulations, you\u2019ve made it to the end of this comprehensive guide on how to install WordPress on Linux. From understanding the compatibility of WordPress and Linux to setting up the necessary infrastructure, downloading and configuring your WordPress files, creating a database, and troubleshooting common installation issues, you now have all the tools necessary to install WordPress on a Linux server with ease.<\/p>\n\n\n\n<p>But remember, the journey doesn\u2019t end here. To ensure your site performs at its best, remember to optimize your WordPress site on Linux by implementing caching, enhancing security measures, and staying up-to-date with the latest PHP and WordPress updates. With these steps, you\u2019re well on your way to creating an impressive WordPress site on Linux. Let the web adventure begin!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently Asked Questions<\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1717502305596\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">Why should I choose WordPress and Linux for my website setup?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>You should choose WordPress and Linux for your website setup because of their high compatibility, user-friendly nature, straightforward installation process, responsiveness, SEO-friendliness, and comprehensive instructions, making them a popular choice among web developers.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1717502328434\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">What is the LAMP stack and why is it important for installing WordPress on Linux?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>The LAMP stack, which includes Linux, Apache, MySQL, and PHP, is important for installing WordPress on Linux as it provides the necessary environment for WordPress to operate, including the web server, database storage, and script execution capabilities. This stack is crucial for running a WordPress site effectively.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1717502339133\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">I am getting permission errors during the WordPress installation process. How can I resolve this?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>To resolve permission errors during the WordPress installation process, make sure to assign file and directory ownership to the Apache server using the &#8216;chown&#8217; command. This ensures the necessary permissions for the Apache server to read and write files.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1717502343634\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">How can I optimize my WordPress site on Linux for better performance?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>To optimize your WordPress site on Linux for better performance, update to PHP 7, disable unused services, keep WordPress and its plugins updated, and implement caching with OPcache and Redis. Making these changes can significantly boost your site&#8217;s performance.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1717502349950\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">I am experiencing database connection failures during the WordPress installation. What can I do?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>To resolve database connection failures during WordPress installation, first, check the status of the database server and ensure the database user has the correct permissions. Then, adjust the wp-config.php file to include the correct database credentials if needed.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Need to install WordPress in Linux? This guide cuts through the confusion, offering direct instructions to get WordPress up and running on your Linux system. From<span class=\"excerpt-hellip\"> [\u2026]<\/span><\/p>\n","protected":false},"author":1,"featured_media":701,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[7],"tags":[],"class_list":["post-700","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-guides"],"acf":[],"_links":{"self":[{"href":"https:\/\/muffingroup.com\/advice\/wp-json\/wp\/v2\/posts\/700","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/muffingroup.com\/advice\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/muffingroup.com\/advice\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/muffingroup.com\/advice\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/muffingroup.com\/advice\/wp-json\/wp\/v2\/comments?post=700"}],"version-history":[{"count":4,"href":"https:\/\/muffingroup.com\/advice\/wp-json\/wp\/v2\/posts\/700\/revisions"}],"predecessor-version":[{"id":706,"href":"https:\/\/muffingroup.com\/advice\/wp-json\/wp\/v2\/posts\/700\/revisions\/706"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/muffingroup.com\/advice\/wp-json\/wp\/v2\/media\/701"}],"wp:attachment":[{"href":"https:\/\/muffingroup.com\/advice\/wp-json\/wp\/v2\/media?parent=700"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/muffingroup.com\/advice\/wp-json\/wp\/v2\/categories?post=700"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/muffingroup.com\/advice\/wp-json\/wp\/v2\/tags?post=700"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}