WordPress Development

How to Create Image & Button Shortcode in WordPress

You can create a WordPress shortcode for image or button by just creating a custom shortcode and passing required parameters and attributes in it. I have written a detailed article about creating custom WordPress shortcodes, where I have outlined how to pass parameters and attributes in shortcodes. Here I am sharing the code snippets to …

How to Create Image & Button Shortcode in WordPress Read More »

How to Enqueue Scripts & Styles Only When Shortcode Exists

If you are working on a WordPress theme or plugin then there can be a chance where you only want to include javascript or CSS files only if a particular shortcode exists. To check shortcode existence WordPress gives a function shortcode_exists($shortcode_tag). By using this function, you can check if a shortcode exists or not and …

How to Enqueue Scripts & Styles Only When Shortcode Exists Read More »

How to Enqueue or Include Scripts, JS, Jquery in WordPress

If you have just started with WordPress development, then enqueuing Scripts, Javascript, Jquery files and enqueuing CSS, Font-Awesome Icons, and Google Fonts in WordPress are one of the most important parts of WordPress development, that you must know. However, you can directly include any js file in WordPress by linking them in the header but …

How to Enqueue or Include Scripts, JS, Jquery in WordPress Read More »

How to Enqueue CSS, Font-Awesome, Google Fonts in WordPress

If you are a newbie in WordPress development then enqueuing stylesheet, font-awesome icons, Google fonts, External stylesheet and enqueuing Javascript and Jquery in WordPress is something that you should take extra care. However, you can include CSS file or fonts in the header file or in the head section of your WordPress website but this …

How to Enqueue CSS, Font-Awesome, Google Fonts in WordPress Read More »

How to Check if Shortcode already Exist in WordPress

Luckily, In WordPress 3.6.0, they have introduced a new function that will allow us to check the existence of shortcodes. By using shortcode_exists($shortcode_tag), A function that can easily check if any shortcode already available in WordPress or not. Eg: Let’s check for the default shortcode that comes with WordPress. You can also check the existence …

How to Check if Shortcode already Exist in WordPress Read More »

WordPress Theme Development Interview Questions & Answers

Looking for WordPress Interview Questions & Answers about WordPress Theme Development Here is the list of Most Commonly Asked Interview Questions with their answers explained. What are WordPress Themes? WordPress theme defines the look and appearance of your website at the front-end, controls the website’s functionalities and workflow, and store the data at the backend. …

WordPress Theme Development Interview Questions & Answers Read More »