General settings in WordPress help you control basic site details like the site name, address, and how people interact with your site.
General settings in Wordpress
Start learning this pattern below
Jump into concepts and practice - no test required
or
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Introduction
Syntax
Wordpress
Go to WordPress Dashboard > Settings > General Here you can edit fields like: - Site Title - Tagline - WordPress Address (URL) - Site Address (URL) - Email Address - Membership options - New User Default Role - Timezone - Date Format - Time Format - Week Starts On
Changes here affect your whole website and how visitors see it.
Always save changes by clicking the 'Save Changes' button at the bottom.
Examples
Wordpress
Site Title: My Cool Blog Tagline: Sharing cool stuff every day
Wordpress
WordPress Address (URL): https://example.com Site Address (URL): https://example.com
Wordpress
Timezone: America/New_York Date Format: F j, Y Time Format: g:i a
Sample Program
This PHP code fetches the current site title and updates the tagline setting. It then prints both values.
Wordpress
<?php // This example shows how to get and update general settings programmatically in WordPress // Get the site title $site_title = get_option('blogname'); // Update the site tagline update_option('blogdescription', 'Your daily source of inspiration'); // Print the current site title and new tagline echo "Site Title: $site_title\n"; echo "Tagline updated to: " . get_option('blogdescription') . "\n"; ?>
Important Notes
Be careful when changing URLs; incorrect URLs can make your site inaccessible.
Use an administrator account to access and change general settings.
Always back up your site before making major changes.
Summary
General settings control your site's basic identity and behavior.
They include site name, URLs, email, timezone, and formats.
Changes affect the whole site and should be done carefully.
Practice
1. Which of the following is NOT typically found in WordPress General Settings?
easy
Solution
Step 1: Identify common General Settings options
Site Title, Timezone, and Email Address are standard general settings in WordPress.Step 2: Recognize User Roles location
User Roles are managed under Users, not General Settings.Final Answer:
User Roles -> Option AQuick Check:
General Settings exclude User Roles [OK]
Hint: General Settings focus on site identity, not user management [OK]
Common Mistakes:
- Confusing User Roles with General Settings
- Thinking all settings are in one place
- Mixing site info with user permissions
2. Which is the correct way to change the WordPress site URL in the General Settings?
easy
Solution
Step 1: Understand the purpose of each field
'WordPress Address (URL)' is where the site files are located and controls the site URL.Step 2: Match the field to the URL change
Changing 'Site Title' or 'Admin Email' does not affect the URL; 'Timezone' is unrelated.Final Answer:
Edit the 'WordPress Address (URL)' field -> Option CQuick Check:
URL changes happen in WordPress Address field [OK]
Hint: URL is set in 'WordPress Address (URL)' field [OK]
Common Mistakes:
- Changing Site Title to update URL
- Editing Email instead of URL
- Ignoring the WordPress Address field
3. What will happen if you set the 'Timezone' in General Settings to a city in a different continent?
medium
Solution
Step 1: Understand the role of Timezone setting
Timezone controls how WordPress displays time and dates on posts and pages.Step 2: Analyze effects of changing timezone
Changing timezone updates displayed times; it does not affect URL or email.Final Answer:
The site time and post timestamps will adjust to that timezone -> Option AQuick Check:
Timezone affects displayed time, not URL or email [OK]
Hint: Timezone changes affect displayed times, not URLs [OK]
Common Mistakes:
- Thinking URL changes with timezone
- Expecting email to update
- Believing permalinks must be saved for timezone
4. You tried to update the 'Site Title' in General Settings but the change did not appear on your site. What is the most likely cause?
medium
Solution
Step 1: Check the update process for General Settings
Changes only apply after clicking 'Save Changes' at the bottom of the page.Step 2: Eliminate unrelated causes
Site URL, admin email verification, and timezone do not prevent title updates from showing.Final Answer:
You forgot to click the 'Save Changes' button -> Option BQuick Check:
Unsaved changes do not update site [OK]
Hint: Always save changes after editing settings [OK]
Common Mistakes:
- Assuming URL affects title display
- Ignoring save button
- Confusing email verification with title update
5. You want your WordPress site to display dates in the format 'Day-Month-Year' (e.g., 25-12-2024). Which General Settings option should you change to achieve this?
hard
Solution
Step 1: Identify the setting controlling date display
The 'Date Format' option in General Settings controls how dates appear on the site.Step 2: Understand other options' roles
Site Title, URL, and Timezone do not control date format display.Final Answer:
Change the 'Date Format' setting -> Option DQuick Check:
Date format is set in General Settings Date Format [OK]
Hint: Date format is set in 'Date Format' option [OK]
Common Mistakes:
- Changing Site Title to affect date
- Confusing URL with date format
- Thinking timezone changes date format
