Fetch data in custom wordpress theme using ajax
AJAX is a combination of HTML, CSS and JavaScript code that enables you to send data to a script and then receive and process the script’s response without needing to…
AJAX is a combination of HTML, CSS and JavaScript code that enables you to send data to a script and then receive and process the script’s response without needing to…
We're going to dive into the world of WordPress and learn how to create a custom CRUD (Create, Read, Update, Delete) system in the WordPress admin area without relying on…
We can add/include any php file to wordpress other php file inside the wordpress custom theme by using this steps: functions.php function shortcode_fun(){ include_once get_theme_file_path().'/shortcodes/form.php'; } add_shortcode('sc', 'shortcode_fun'); shortcodes/form.php <div…
Normally, you will use shortcodes inside content areas like posts, pages, or sidebar widgets. However, sometimes, you may want to add a shortcode inside your WordPress theme. In this article,…
Friends, shipping plays a very important role in running our commerce website and you know that the biggest role in shipping is of the courier company and the courier company…
The Single Posts template controls the layout of individual posts on your site. When you make a change to this template, the change will reflect on all your posts, ensuring a consistent experience for…
Friends, I want to tell you that whatever pages or posts there are in WordPress, the type of all of them is a post. If we want to create some…