WordPress Communication & Stakeholder Relations 2 — Questions and Answers
Question 1: A client wants to receive an email every time a new post is published on their WordPress site. Which built-in feature or plugin approach best fulfills this?
- Use Jetpack's Subscriptions module to send email notifications to followers (Correct answer)
- Install a caching plugin and configure push notifications
- Edit wp-config.php to add email triggers on post save
- Use the default WordPress dashboard widget for email alerts
Correct answer: Use Jetpack's Subscriptions module to send email notifications to followers
Jetpack's Subscriptions module sends automated email notifications to subscribers whenever new content is published.
Question 2: When presenting a WordPress project timeline to a non-technical client, which communication approach is most effective?
- Share the full Git commit log so they can track progress
- Use plain-language milestone summaries with expected delivery dates (Correct answer)
- Send raw database migration scripts as progress updates
- Provide access to staging server error logs
Correct answer: Use plain-language milestone summaries with expected delivery dates
Non-technical clients understand milestone-based summaries better than technical artifacts like logs or scripts.
Question 3: A stakeholder reports that the WordPress contact form stopped sending emails after the site moved to a new host. What is the most likely cause?
- The WordPress theme was not updated
- The new host's PHP mail() function is blocked or misconfigured (Correct answer)
- The database prefix changed during migration
- The SSL certificate expired
Correct answer: The new host's PHP mail() function is blocked or misconfigured
Many hosts disable PHP's mail() function for security; configuring SMTP via a plugin like WP Mail SMTP resolves this.
Question 4: Which WordPress feature allows an editor to preview changes before publishing so they can share feedback with the developer?
- WordPress Multisite
- Post Revisions
- Preview Changes / staging URL (Correct answer)
- Gutenberg Reusable Blocks
Correct answer: Preview Changes / staging URL
The 'Preview Changes' button generates a shareable URL so stakeholders can review unpublished updates before they go live.
Question 5: A project manager wants to track which team member last updated a WordPress page. Which approach provides this audit trail?
- Check the page's Yoast SEO score history
- Use the Post Revisions panel to see author and timestamp per revision (Correct answer)
- Review the wp_options table in phpMyAdmin
- Enable debug logging in wp-config.php
Correct answer: Use the Post Revisions panel to see author and timestamp per revision
WordPress stores revisions with author and timestamp, giving a built-in audit trail for content changes.
Question 6: A stakeholder requests weekly automated site health reports. Which WordPress tool provides built-in health monitoring data?
- WP-CLI cron list
- WordPress Site Health (Tools > Site Health) (Correct answer)
- The Appearance > Customize panel
- WooCommerce analytics dashboard
Correct answer: WordPress Site Health (Tools > Site Health)
The Site Health tool (Tools > Site Health) provides diagnostic information and can surface critical issues for regular review.
Question 7: When a client asks why their WordPress site is slow, which communication strategy best manages their expectations?
- Tell them WordPress is always slow and suggest switching platforms
- Provide a performance report (e.g., GTmetrix) and explain specific bottlenecks with a remediation plan (Correct answer)
- Ask them to upgrade their browser
- Reset all plugins and see if speed improves without explanation
Correct answer: Provide a performance report (e.g., GTmetrix) and explain specific bottlenecks with a remediation plan
Sharing a concrete performance report with identified bottlenecks and a clear action plan builds client trust and sets realistic expectations.
A client wants to receive an email every time a new post is published on their WordPress site.
Which built-in feature or plugin approach best fulfills this?