Creating a custom Gutenberg block in WordPress is essential for developers who want to extend the WordPress block editor’s functionality beyond what’s available by default. Gutenberg (the block editor introduced in WordPress 5.0) uses React.js under the hood, and creating…
Tag: wordpress
Creating a Wp Angular Theme for WordPress with Gutenberg
Building a bespoke Wp Angular theme offers the benefits of a modern JavaScript framework while maintaining the rich ecosystem and content management features of WordPress. The key challenge in this setup is ensuring full compatibility with Gutenberg blocks, the native…
How to fix WordPress “the website is undergoing scheduled maintenance…” error
While doing a plugin update on a WordPress website I accidentally clicked on a link on the update page and it took me away to another page. Consequently it disrupted the ongoing update process and it left the website in…
How to replace special characters in filenames to fix 404 not found issue in website running on nginx
It is recommended to not include special character in filenames, such as apostrophe(‘), double quote(“), percent(%) etc. Special characters in filenames of the files uploaded to a web server should be avoided for various reasons. It may cause unexpected behaviour,…
Understanding WordPress Template Hierarchy
WordPress is the most used CMS that powers 30% websites over the internet! WordPress uses themes to control look and feel of a website. You can create new theme or a child theme by following simple instructions found here.
Adding custom css for the post editor view in WordPress
You should read this post in order to understand the methods to add custom css to WordPress admin end. In this post I will demonstrate how to add custom css styles which reflects within the Visual editor in WordPress.
How to create WordPress child theme
To customize look and feel of a WordPress website is easy. You may know that almost every WordPress website uses a ready-made theme or a custom theme. Most the times it is a ready-made theme which is free or paid.…
Setting up folder permissions for WordPress on Amazon EC2 (Amazon Linux)
Are you facing file uploading errors or not able to install plugins or upload files through ftp to your EC2 installation of WordPress? Possibly folder permissions?? Read on.
PDF thumbnail generation in WordPress – You may not need a plugin!
I was working on a WordPress website in which I needed to create thumbnails from PDF file uploads. As I work with WordPress less frequently these day I was not aware of an amazing update and fact about PDF thumbnail…
How to Change the Default Media Upload Location in WordPress 3.5+
Changes to Media Uploader in WordPress 3.5 were perhaps the most significant changes in that release. Another important change was the removal of Settings » Miscellaneous section where there was an option to change the default upload directory and an…