Updated on Dec 6, 2022
The WordPress application allows a wide variety of settings you should start with right after the installation process. In this tutorial, we will explain what each of these options provide in terms of features. That way, you will be able to quickly determine what part of the configuration you need to change depending on your website.
For this tutorial we are using WordPress version 5.2.2 which is currently the latest available version.
To configure your WordPress, you will need to setup your:
To begin reviewing and changing the setting of your application, you will need to login in the admin section of your WordPress application. Once you are there, navigate to Settings → General.
The first section which we are about to review in this guide contains some of the mandatory information for your website.
The registration options are another essential set of fields.
Warning
Note that if you enable registration of new users on your website, you will have to ensure that the registration form is protected from bots. That can be done by using verification methods such as reCaptcha.
d/m/Y
but also some more obscure characters like j
(day of the month, e.g. 15), F
(full name of the month, e.g. April) and l
(full name of the day, e.g. Monday).Once you are done with the general settings for your application, click the Save Changes button located at the bottom of the page.
The next section you should consider contains the Writing settings. These are available under your admin dashboard and navigate to Settings→Writing.
The first few entries on this list are related to the configuration of your posts.
Additionally on the same page you will find the settings for creating posts via the email service of the application.
Email Account
As the tip above suggest you will need an Email Account which you can easily create in your cPanel. If you are not quite sure how this should be achieved please check our "How to Manage Email Accounts" tutorial.
Note that the email account should be with secured name so it cannot be abused by spam since it will directly post literally ever received email.
Once you have completed editing the configuration, hit the Save Changes button so the configuration can persist.
The next section of settings is the Reading section, which you should be able to find in your admin area by going to Settings → Reading.
This section is for configuring how the elements on your pages will be displayed and also how the information should be perceived.
Once you are done with all of the settings in this section, hit the Save Changes button so your changes can be saved.
The next section of settings we will review is called Discussion, and it is available by logging into your admin dashboard and then navigating to Settings → Discussion.
As the name suggests, this section includes settings related to the communication options for your blog. That includes avatars used by the members and even for blacklisting certain words if you do not want them displayed in the comments.
The settings from this page you might want to use, and we are recommending are:
These settings will ensure that the one writing a comment is human and not a bot. If you leave these options unchecked, you are allowing anyone to write comments on your articles or blogs.
The other settings on that page are related to the avatars for your users, and you should be able to configure these based on your preferences.
You can also select a default avatar for your customers so they still get a visual representation on the website.
Once you are done setting this section, please press the Save Changes button in order for the changes to be saved successfully.
Next, we will explain the Media settings section available under your admin area → Settings → Media.
This section contains settings mainly related to the media types you are uploading on your application. Please take some time to configure these based on your needs.
All of the options are pretty much self-explanatory, and you will be able to edit them easily.
Once you are done, please use the Save Changes button to save the changes you have performed.
As soon as the settings on that section are saved, you can move to the last part of settings called Permalinks. It is usually available in your administrators' area located in Settings → Permalinks.
This section serves for the configuration of the links and URLs on your application. By default the application has a plain permalink structure.
However, based on your needs and personal likes, you can set the Permalink structure to any of the provided in that configuration option. You are also provided with the option to specify your Custom Structure.
However, to use any Permalinks structure different than the default one, you will need to ensure that the .htaccess
file of the WordPress application is present. The file will also have to contain the following lines:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
With a permalinks change, you will be able to switch the way your URLs look, making them more readable and SEO friendly. That makes it easier for your users to navigate the content of your website. One of the most used permalink types is "Day and Name" or as it could be made in the custom field:
/%year%/%monthnum%/%day%/%postname%/
You can also add %category%
before the %postname%
tag to specify the category of the post or %author%
if you want to have your authors credited in the URL.
In WordPress, both categories and tags are used to sort posts and increase the ease of navigating the content on your website. By default a post in a category shows like this:
https://example.com/category/news/big-news-today
If the same post contains the forecast and has a "weather" tag, the URL to the list of posts using this tag will look like this:
https://example.com/tag/weather
However, if your website is more oriented towards a particular theme, you can change the base values - category and tag.
For example, if you have an online class oriented website in which you teach and provide materials for different classes, instead of /category/time-management you can have /classes/time-management.
Another example could be if you have a programming oriented blog with different levels of advancement. Instead of having /category/novice and /category/expert you can have /level/novice and /level/expert.
In such cases, all you have to do is change the category base to one corresponding to your website's theme.
For tags, the situation is almost the same. However, the tag base is rarely changed due to tags having to be very precise if the base itself is more specific. If we take the programming oriented blog from the above-mentioned example and say you are teaching multiple languages, you can change the tag base from /tag to /language. That way, you will be able to use tags to differentiate posts for Python, PHP, C++, C#, JavaScript, etc while keeping your category base (/level).
That can also be used to avoid subcategories which are not always the best way to go when sorting content. The issue with using such a narrow scope of tags is that it won't make sense to add additional ones to further cover the content of each post. So, in this case, tags such as variable, array, login form, table, etc. will not sound logical.
The newest addition to the multitude of settings you can configure in WordPress is the Privacy section. Introduced in WordPress 4.9.6, the Privacy → Settings option allows Administrators to create a new Privacy page or specify existing ones as Privacy Policy pages of the site.
Once you click on Create a New Page, you will be redirected to the Pages menu and in the creation window of a new page. The page will have the Privacy Policy template ready for you to complete. Here you have to only add the cases which apply to your website. If you are ever lost, you can check the official Privacy Policy Guide provided by WordPress.
The template itself is not very long, and the guide is easy to follow. Meaning, it won't take you more than 10-15 minutes to complete your website's Privacy Policy.
Don't forget to publish the page when you are ready, as this time there is no Save Changes button.
With this, you have completed the configuration of your general settings in WordPress. Your website is ready to grow and expand!