Blog Archives

A Developer’s Guide To Translating WordPress.org Plugins

A quick reference guide for WordPress plugin developers who host their plugin in the WordPress.org repository.

Posted in WordPress Tagged with: , , , ,

Let’s Encrypt SSL on Amazon AWS EC2 using GetSSL (ACME V2)

Certbot used to be the go-to tool to install Let’s Encrypt SSL and periodically update them. However, now they require snapd to install the latest version of certbot. So let’s use GetSSL.

Posted in Tutorials Tagged with: , , ,

How I manage WordPress websites with Git, GitHub and Local

A documentation of how I manage my WordPress websites using Git, GitHub and Local (by Flywheel / WP Engine). I am not claiming that this is the best way for everyone. But this works beautifully for me.

Posted in WordPress Tagged with: , , ,

Remove Website Field From WordPress Comment Form

Remove the website / URL field in WordPress comment form. /** * Remove webiste field from WordPress comment form * * Removes the website field when comments form is displayed with comment_form() * * @since 1.0 */ function velocity_remove_comment_form_website_field( $fields

Posted in WordPress Tagged with: , , ,

Remove Comment Author Link In WordPress Comment List

Add the following code snippet to the functions.php of your theme to remove the links to the comment author website in WordPress comments list. Works when the comments list is generated with wp_list_comments(). /** * Remove comment author link in

Posted in WordPress Tagged with: , ,