The has_post_thumbnail() WordPress function Updated on July 8, 2014 by Jeff Matson 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 Updated on August 16, 2021 by Jeff Matson 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 Updated on August 16, 2021 by Jeff Matson 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 Updated on May 14, 2024 by Jeff Matson 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 Updated on May 26, 2021 by Jeff Matson 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 Updated on May 26, 2021 by Jeff Matson 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 Updated on August 16, 2021 by InMotion Hosting Contributor 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 Updated on May 26, 2021 by Jeff Matson 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 Updated on May 27, 2021 by Jeff Matson 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 Updated on May 27, 2021 by Jeff Matson 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 Updated on April 21, 2022 by Jeff Matson 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 >
Move Your WordPress Site to a New Server Updated on January 21, 2026 by InMotion Hosting Contributor Moving your WordPress site between servers can be a challenging technical task, but it is easier than you may think. In this article, we will cover the website migration of your WordPress website to a new server manually or with an XML file. There will also be further resources on moving your website from specific Read More >
K2 Video Tutorials Updated on June 8, 2023 by Brad Markle K2 is a content component for Joomla 3. What is a content component? It’s a component that allows you to write and publish articles. It’s much like Joomla’s built in content component, except that it has additional features built right in – such as commenting and tags. Below, you’ll find a collection of K2 video Read More >
How to remove the “base href” tag Joomla 3 Updated on October 8, 2020 by Brad Markle Joomla uses the base tag By default, Joomla adds the base tag to your header (as in the example below): <head> <base href=’http ://www.domain.com/page.php’ /> </head> The base tag can cause problems There may be scenarios, however, in which this base tag can cause a problem. For example, if your base tag uses http and Read More >
Installing PoodLL plugins for Moodle Updated on December 30, 2020 by InMotion Hosting Contributor In this tutorial, we will show you how to install the PoodLL plugins for Moodle. This is a popular add-on since it adds audio/video recording abilities to your moodle site, and can also help you teach language courses. For example, using the PoodLL plugin you can allow students to submit audio or video answers to Read More >
Fix “uploaded file may exceed the post_max_size directive in php.ini” Updated on March 31, 2023 by InMotion Hosting Contributor If you are working in Moodle you may see the error “The uploaded file may exceed the post_max_size directive in php.ini.” This error is caused by a PHP limitation when trying to post data. The php.ini file controls your local PHP settings and can be changed anytime. In this tutorial, I will show you how Read More >
Moodle vs Blackboard Updated on March 15, 2021 by InMotion Hosting Contributor In this tutorial: Pricing Server Requirements Feature Comparison Help Options There are many educational software options available, also known as Learning Management Systems (LMS). They can help you keep track of grades, give tests, and administer classes. Moodle, and Blackboard are two of the most popular of the many Learning Management Systems available. In this Read More >
How to change your URL in Moodle Updated on August 16, 2021 by InMotion Hosting Contributor When you are running a Moodle website, there may be times when you have to change your URL. For example, you may have sold the website, or maybe you purchased a shorter domain name, and want to replace the old one. In this tutorial we will show you how to change your URL in Moodle. Read More >
Viewing the Quiz Statistics Report in Moodle Updated on October 8, 2020 by InMotion Hosting Contributor Reviewing reports from your quizzes can help identify patterns or issues with specific questions. It can also help you see how well your students are grasping the information. For example, if you see students missing the same question on a quiz. This may mean the question needs rewording, or the material needs more review during Read More >
Upload a custom WordPress default user avatar Updated on June 9, 2023 by Jeff Matson Uploading a new default WordPress user avatar is a great idea to better match the rest of your site’s appearance. Thankfully, the WP User Avatar plugin can easily be used to upload a new default user avatar with just a single click. Installing the WP User Avatar plugin First, you will need to log into Read More >