Category: WordPress Theme Development

WordPress plugin development tutorial using MySQL

today we will learn how to develop a WordPress plugin using MySQL database table by creating during installation, inserting from WordPress admin panel and fetching value in frontend using the shortcode. and for this plugin, you can be able to get the social media list by using the shortcode [CM_SOCIAL_MEDIA]. now step by step develop […]

Read More

WordPress Plugin Development Tutorial Using Ajax

WordPress ajax is very easy to implement and in this tutorial we will learn how to make an ajax form and will develop a plugin regarding that, Now step by step start ** if you need then visit my plugin development tutorial page to define a plugin and shortcode and learn to create till the […]

Read More

WordPress Plugin Development Tutorial Using Ajax

the plugin is the best way to add more featured to WordPress and on theme change the feature will not be gone. In this tutorial, we are going to develop a WordPress login registration plugin with the shortcode. Now start step by step, you can use the shortcode for the plugin [CMWP_LOGIN redirect=<page page id […]

Read More
Tutorial on How to Develop a WordPress WooCommerce Theme

Tutorial on How to Develop a WordPress WooCommerce Theme

WordPress woocommerce theme development: woocommerce is the most popular e-commerce plugin for WordPress, we will learn how to develop a WordPress woocommerce theme step by step in this tutorial and will make a proper e-commerce theme, first we need to know the structure to create an e-commerce theme, the header contains the cart link with […]

Read More

WordPress Widget Development Tutorial

the widget is mainly displayed in sidebar or WordPress and its a very good process to ad extra featured in WordPress in this tutorial we will learn and develop a WordPress widget widget To create a widget first have to create a class extending the WordPress default widget class thus in the declared class all […]

Read More

Tutorial on how to create a WordPress comment template

in a blog type website or in an e-commerce website there needed a comment form and display comments list. In WordPress, there is provided a comment template by default and it can be customized also no make the comment template step by step first write the below code in a post or page template to […]

Read More

Tutorial on How to Make a WordPress Custom Search Page Template

the search.php is the search page template for WordPress, in this search template development we will learn to make a search form and search result displaying page so first, we will make a search form in any position of the theme The search form code for WordPress search function <form action=”<?php echo esc_url( home_url( ‘/’ […]

Read More

Tutorial on how to create a WordPress archive template the list of category wise or date wise post

the archive.php file is used to display the date, month or year wise and it also used to show the category wise posts, now in this archive template development we are going to learn to make an archive and custom archive page. Now Start to make the archive page step by step Step 1 make […]

Read More

How to make a template for custom post type in wordpress

the custom single post templates structure is same as a post-default template or single.php file, If you find some design change on some case of displaying custom post then you can make a single post display page for the custom post type and we will learn custom post template development step by step for that, […]

Read More

WordPress how to make a single post template the post details page

the single.php file is used to display as a single post-default template so to show a single we need to learn WordPress single post template development the single.php file the development process of a single.php file is similar to page.php file development and the only difference is getting the comment template now will start to […]

Read More