Python Programming
The WordPress Dashboard
In This Section, You Will Learn:
- • How to access and navigate the WordPress Dashboard
- • Understanding the main dashboard sections
- • The difference between Posts and Pages
- • Essential settings to configure immediately
- • User roles and permissions explained
- • The first 10 things to do after installing WordPress
Accessing the WordPress Dashboard
- The WordPress Dashboard (also called wp-admin) is the control panel where you manage everything on your website.
- How to Access:
- • Go to: yourwebsite.com/wp-admin
- • Enter your username and password
- • You'll land on the Dashboard home screen
- Security Tip: Bookmark your login URL. Better yet, use a password manager. Never use 'admin' as your username — it's the first thing hackers try.
- If you forget your password: Click 'Lost your password?' on the login page, and WordPress will email you a reset link.
Dashboard Navigation (Left Sidebar)
- Here's what each section does:
- Dashboard: Overview of your site with quick stats and WordPress news.
- Posts: For blog articles and news content. Posts have dates and categories.
- Media: Your image and file library. Everything uploaded goes here.
- Pages: For static content like Home, About, Services, Contact.
- Comments: Manage visitor comments on your posts.
- Appearance: Themes, menus, widgets, and site customization.
- Plugins: Install and manage extensions that add functionality.
- Users: Manage who can access your site and their permissions.
- Tools: Import/export data, site health check.
- Settings: Core website settings (site title, URL, reading, writing, etc.).
Posts vs Pages (Critical Difference)
- Posts:
- • Time-based content (blog articles, news, updates)
- • Have dates, categories, and tags
- • Display in reverse chronological order (newest first)
- • Good for: Blog posts, news articles, updates, tutorials
- Pages:
- • Static content that rarely changes
- • No dates, categories, or tags
- • Used for site structure
- • Good for: Home, About Us, Services, Contact, Privacy Policy
- Rule of Thumb: If the content is evergreen (doesn't expire), use a Page. If it's timely or ongoing, use a Post.
Essential Settings to Configure
- Go to Settings and configure these:
- 1. General Settings:
- • Site Title: Your business/website name
- • Tagline: Brief description (appears in search results)
- • Site Address (URL): Make sure it shows 'https://' (SSL)
- 2. Permalinks (CRITICAL):
- • Go to Settings → Permalinks
- • Select 'Post name' (/sample-post/)
- • This creates SEO-friendly URLs instead of ugly ?p=123 links
- 3. Reading Settings:
- • Choose what your homepage displays (latest posts or static page)
- • For business sites, set a static Homepage
- 4. Discussion Settings:
- • Decide if you want comments on or off
- • For business sites, usually turn comments OFF
User Roles Explained
- WordPress has different access levels:
- Administrator: Full access to everything. Only for site owners/developers.
- Editor: Can publish and manage all posts/pages, including others' content.
- Author: Can publish and manage their own posts only.
- Contributor: Can write posts but cannot publish. Needs approval.
- Subscriber: Can only read content and manage their profile.
- Best Practice: Never give Administrator access to clients. Make them an Editor. This prevents accidental disasters.
First 10 Things to Do After Installing WordPress
- Follow this checklist for every new WordPress site:
- 1. Change the default 'admin' username to something unique
- 2. Set permalinks to 'Post name'
- 3. Delete the sample 'Hello World' post and 'Sample Page'
- 4. Update the Site Title and Tagline
- 5. Set your timezone (Settings → General)
- 6. Enable SSL and force HTTPS
- 7. Install a security plugin (Wordfence or Sucuri)
- 8. Install a backup plugin (UpdraftPlus)
- 9. Delete unused default themes and plugins
- 10. Set up a static homepage if it's a business site