WP建議插件

– Disable Json API, Login Lockdown, XMLRPC, Pingback, Stop User Enumeration – Anti Hacker Scan
– Two Factor Authentication
– REST XML-RPC Data Checker
– Disable XML-RPC
– Disable REST API
– Simple Cloudflare Turnstile – CAPTCHA Alternative
– WooCommerce Checkout Manager
– WooCommerce Shortcodes
– Woocommerce Catalog Enquiry
– WooCommerce Image Zoom
– Essential Addons for Elementor
– Royal Elementor Addons and Templates
– Popups – WordPress Popup
– WP Mail SMTP by WPForms
– Contact Form 7
– Contact Form 7 Honeypot
– Contact Form 7 Redirection
– Contact Form 7 Skins
– Polylang / – qTranslate X / – WP Mutlilang / – Translate Multilingual sites – TranslatePress
– Hyyan WooCommerce Polylang Integration
– Fruitful Shortcodes
– Awesome Filterable Portfolio
– Black Studio TinyMCE
– TinyMCE Advanced
– Useso take over Google
– Google Font Fix
– WP Lightbox 2
– Smart Slider 3
– Meta Slider
– Breadcrumb NavXT
– TemplatesNext ToolKit
– Google Analytics
– Google Authenticator
– Menu Image
– Simple Share Buttons
– WP Super Cache / – W3 Total Cache
– Locatoraid
– Use Any Font
– Custom Sidebars
– Carousel Slider
– Slider Video
– Responsive Menu //templatesnext 要hide .menu-toggle
– Live Forms – Visual Form Builder / – WPForms Lite / Pabbly Form Builder
– Compact WP Audio Player
– Clear Cache For Me
– Vertical Scroll Recent Post
– GDPR Cookie Consent
– HootKit
– WP-Optimize
– Content Control

Contact Form 7 Special mail-tags

原來可以咁….

[_site_admin_email]
[_site_title] <wordpress@your_domain>
[_site_title] “[your-subject]”
Reply-To: [your-email]

From: [your-name] <[your-email]>
Subject: [your-subject]

Message Body:
[your-message]


This e-mail was sent from a contact form on [_site_title] ([_site_url])

https://contactform7.com/special-mail-tags/

Force SSL in WordPress with Web.config

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
	<rewrite>

	<rules>
		<rule name="Redirect to https" stopProcessing="true">
			<match url=".*" />
			<conditions>
			<add input="{HTTPS}" pattern="off" ignoreCase="true" />
			</conditions>
			<action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" appendQueryString="false" />
		</rule>

		<rule name="Main Rule" stopProcessing="true">
			<match url=".*" />
			<conditions logicalGrouping="MatchAll">
			<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
			<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
			</conditions>
			<action type="Rewrite" url="index.php/{R:0}" />
		</rule>
	</rules>

	</rewrite>
    </system.webServer>
</configuration>