Link css, js and images in custom wordpress theme
The JavaScript and these images play a very important role in any website. As you all know, the design of any website depends on these three things. Without these three,…
The JavaScript and these images play a very important role in any website. As you all know, the design of any website depends on these three things. Without these three,…
As you all might know how important header and footer are for any site, the total navigation of any website is done on header and footers only and with the…
Although there are many folders and files in WordPress, but there are only a few files and folders which we keep using a lot, it is useful for us in…
Friends, this is a very popular payment gateway application in India, through this we can get payment through our website and transfer it to our bank account. In today's video…
Hello friends, you are very welcome to our PHP tutorial. Friends, from today we are going to start the tutorial of PHP, what is PHP? So friends, PHP is a…
jQuery events are actions or occurrences that happen on a web page, such as clicks, hover, or keypress. jQuery provides methods to handle and respond to these events with ease. jQuery…
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…