Installing and Setting up WordPress Blade

Posted on

Benefits of Using Laravel Blade Templates vs. PHP Templates Laravel Blade templates offer a clean and efficient approach to writing views compared to traditional PHP templates. One of Blade’s major benefits is its lightweight syntax. It allows developers to write expressive code without the clutter of standard PHP, improving readability and reducing code duplication. Blade

Read More

Setup And Run Cypress Tests With Your WordPress Plugin

Posted on

In this blog, we will learn how to setup and run Cypress test with your WordPress plugin. Source Code: (for smart people 😉) https://github.com/imranhsayed/aquila-features/pull/7 Step 1: Install Cypress( Assuming you already have a package.json file in your project, else run npm init first. This will install cypress locally in node_modules of your project. Step 2:

Read More

Men Who Inspire – Interview Of Andy Turner By Imran Sayed

Posted on

Tell me a little bit about yourself and your work Every week I meet with professionals from engineers to dentists who have the same problem – achieving the IELTS score they need. They come from places like the Middle East, Asia, Canada, and even the UK. They all want to emigrate to countries like Australia,

Read More

Create Custom Post Type Search Result Page In WordPress

Create Custom Post Type Search Result Page In WordPress

Posted on

In this blog, we will learn about how to create a custom post-type search result page in WordPress. We need to take the following steps: Create a custom search page template ( {custom-post-type}-search.php ) Load your template using ‘template_include’ filter  Create a custom search form template ( {custom-post-type}-searchform.php ) Step One — Custom Search Page Template Create a

Read More