When running a website, especially with the increase in brute force attacks against WordPress sites, it is important to protect yourself. Thankfully, BruteProtect will allow you to easily and automatically block attacks. As BruteProtect stores known attack sources in its database, many attacks are stopped before they even begin. In this article, we will show Read More >
Product Guides
Be More Successful with our Product Guides
We want you and your business to be successful. This section of the Support Center will give you the tools you need to build and maintain a successful web presence. Learn how to get started with a reseller account, or how to add and configure weForms to your WordPress site. We’ve been in the web hosting business a while and want to share our expertise with you!
Our product guides are manuals that will help you successfully navigate your new hosting plan and the powerful tools that come with it. The guides will help you master the skills you need to create and maintain an online presence easily. Giving you more time to run your business!
Products
Dedicated Hosting
Dedicated Linux servers that are completely customizable to meet your enterprise level needs.
Business Shared Hosting
Quickly launch your web presence with our affordable Business Shared Hosting plans.
Reseller Hosting
Be your own web hosting provider to your customers with our affordable Reseller Hosting plans.
Reseller VPS Hosting
Be your own web hosting provider to your customers with our affordable Reseller VPS Hosting plans.
Managed VPS Hosting
Learn how to get the most out of your Managed VPS Hosting plan using cPanel/WHM or Control Web Panel.
Cloud Server
Learn how to configure and control your unmanaged Cloud Server with our guides.
WordPress Hosting
Our WordPress Hosting on cPanel is fine-tuned to deliver superior performance, security, and provide best-in-class hosting.
Platform InMotion
Our all-in-one WordPress hosting platform is the ultimate choice for website owners who want to simplify their hosting and management process for their high-performance servers.
Minecraft Server
Learn how to manage your Minecraft server instance using the Game Panel.
Backup Manager
Give yourself peace of mind with Backup Manager. Automatically backup your files, databases, email and cPanel account settings on an external server.
Softaculous
Easily install, upgrade, and manage over 400 web applications, site builders, and frameworks with Softaculous. Save time from manually uploading installation files and configuring databases with cPanel.
weForms
InMotion’s #1 recommended forms plugin for WordPress has an easy-to-use interface and pre-built form templates that let you quickly and easily build forms.
Cleaning Up Old Post Metadata in WordPress
Over time, as posts are updated, created, or deleted, the wp_postmeta table can become large and inhibit your website performance. In this article, we are going to show you how to clean up old, unnecessary post metadata from the wp_postmeta table to help your WordPress site run more efficiently. Before continuing, make a backup of Read More >
Cleaning up Old Comment Meta Data in WordPress
After a while, old comment meta data can sometimes pile up in your database in which it can take up space as well as negatively impact your site performance. In this article, we will show you how to easily clean up the wp_commentmeta tables in your database to remove old comment meta data that no Read More >
Showing your Facebook page photos in WordPress
If you have a website for your business, chances are that you have a Facebook page as well. In this article, we will show you how to use the Facebook Photo Slider plugin to easily display your Facebook page’s images within your WordPress site with an attractive and efficient slider. Note: This plugin only works Read More >
Upgrade to VPS NVMe SSD Hosting
As a linux VPS host, InMotion Hosting now provides a way for you to update your VPS hosting account to NVMe SSD (see why you should switch to NVMe hosting). The upgrade to your account is easily done using your Account Management Panel (AMP). There would be little to no downtime involved in the migration process. Read More >
Installing Logaholic via Softaculous
Logaholic is a program that allows you to track statistics for your website. These stats allow you to see things such as how many hits your site gets on a daily, weekly, or monthly basis. You can use these stats to compare and see trends to help your site become more efficient. This article guides Read More >
Configuring Text Message Notifications in WordPress
Knowing when various things happen within your WordPress site is always critical and sometimes hard to keep up with, especially if you have multiple individuals all making changes. Having a notification system in place that alerts you anywhere you are via text message of changes that are made can make your life a lot easier. Read More >
MailPoet Newsletters WordPress plugin vulnerability – update immediately
On July 4th, 2014 a vulnerability was discovered in the MailPoet Newsletters plugin for WordPress that allows code to be remotely injected into any sites that are running versions 2.6.7 or older. Am I affected? Thankfully, the developer of the MailPoet Newsletters plugin has released an update that resolves the security vulnerabilities. If you are Read More >
The wp_delete_post() WordPress function
At times, you may need to delete a post using a WordPress plugin. For example, if you had a calendar system that created posts for events, and the event was canceled or happened in the past, the ability to automatically delete posts can be quite useful. In this article, we will show you how to Read More >
The has_post_thumbnail() WordPress function
Within your WordPress themes or plugins, you may need to determine if a post has a featured image attached to it. Using the has_post_thumbnail() function, you will be able to easily identify if a post has a featured image or not. In this article, we will show you how to use the has_post_thumbnail() WordPress function. Read More >
The get_the_ID() WordPress function
If you need to obtain the post ID from your posts, you can easily use the get_the_ID() WordPress function. In this article, we will introduce you to the get_the_ID() function. This function can only be used inside the WordPress loop. Basic usage <?php get_the_ID(); ?> This function does not have any parameters that can be Read More >
WordPress WP_Post objects
When using WordPress functions such as get_post(), the information will be stored within WP_Post objects. In this article, we will show you what is stored within those WP_Post objects, as well as how to access them. If you would like more information on creating WordPress plugins, see our tutorial series on creating your first WordPress Read More >
Using The WordPress Loop
When developing WordPress themes, it’s important to know about the loop. The WordPress Loop is a function that grabs posts from your database, and allows you to display multiple posts on a page, such as the index page of a blog. There are many advanced variations of the loop, but in this article we’ll focus Read More >
The get_boundary_post() WordPress function
In the event that you need to get either the last or first post based on published date within your WordPress plugin or theme, you can use the get_boundary_post() function. In this article, we will show you how to use the get_boundary_post() function. If you would like more information on creating WordPress plugins, see our Read More >
The get_permalink() WordPress function
Within your WordPress theme or plugin, you may need to obtain the post permalink. In this article, we will introduce you to the get_permalink() function which you may use to obtain the permalink of either your current post or another desired post. If you would like more information on creating WordPress plugins, see our tutorial Read More >
WordPress plugin file header
When creating a WordPress plugin, you use the File Header to store info about your plugin such as the plugin name and description. These file headers are necessary for WordPress to understand that the PHP script you create is a plugin it can use. Required File Headers for plugins For WordPress to understand your plugin, Read More >
The get_post_status() WordPress function
Within your WordPress plugin or theme, you may need to determine if a post is published, a draft, or some other status. Using the get_post_status() WordPress function will allow you to do exactly that. In this article, we will show you how to use the get_post_status() WordPress function. If you would like more information on Read More >
The get_post() WordPress function
The get_post() WordPress function is one of the most important functions within WordPress. It allows you to get the post content or other information regarding the post easily. In this article, we will introduce you to how you can use the get_post() function to display post data in your plugin or theme. If you would Read More >
The get_the_post_thumbnail() WordPress function
The get_the_post_thumbnail() WordPress function will allow you to get the featured image and display it using your theme or plugin. In this article, we will teach you how to use the get_the_post_thumbnail() function to display featured images anywhere you want to. If you would like more information on creating WordPress plugins, see our tutorial series Read More >
The get_the_excerpt() WordPress function
Built within WordPress, is the ability to add excerpts to your posts. Of course, these excerpts will not do you any good if you cannot display them on your WordPress site. In this article, we will show you the get_the_excerpt() function that you can use within your themes or plugins to display the post excerpt. Read More >